forked from react-native-sensors/react-native-sensors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.47 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "react-native-sensors",
"version": "5.0.0-rc4",
"description": "A developer friendly approach for sensors in react-native",
"scripts": {
"contributor:add": "all-contributors add",
"postcontributor:add": "npm run contributor:generate",
"contributor:generate": "all-contributors generate",
"postcontributor:generate": "npm run format",
"test": "jest",
"format": "prettier --write $(npx jest --listTests)",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"main": "index.js",
"repository": "git@github.com:react-native-sensors/react-native-sensors.git",
"homepage": "https://github.com/react-native-sensors/react-native-sensors",
"keywords": [
"react-native"
],
"author": {
"name": "Daniel Schmidt",
"email": "danielmschmidt92@gmail.com",
"url": "http://danielmschmidt.de"
},
"jest": {
"timers": "fake",
"projects": [
{
"displayName": "Unit",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"tests/*"
],
"timers": "fake"
},
{
"displayName": "Prettier",
"runner": "jest-runner-prettier",
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx",
"css",
"less",
"scss",
"graphql",
"md",
"markdown"
],
"testMatch": [
"**/*.js",
"**/*.jsx",
"**/*.json",
"**/*.ts",
"**/*.tsx",
"**/*.css",
"**/*.less",
"**/*.scss",
"**/*.graphql",
"**/*.md",
"**/*.markdown"
],
"testPathIgnorePatterns": [
"package.json",
"package-lock.json"
]
}
]
},
"babel": {
"presets": [
"react-native"
]
},
"license": "MIT",
"peerDependencies": {
"react-native": ">=0.39.0",
"prop-types": "^15.6.0"
},
"dependencies": {
"rxjs": "^6.5.4"
},
"devDependencies": {
"all-contributors-cli": "6.1.2",
"babel-core": "6.26.3",
"babel-jest": "24.1.0",
"babel-preset-react-native": "4.0.0",
"jest": "24.1.0",
"jest-runner-prettier": "0.2.6",
"prettier": "1.12.1",
"react": "16.8.4",
"react-native": "0.57.7",
"regenerator-runtime": "0.13.1",
"rxjs-marbles": "5.0.0",
"semantic-release": "15.13.16",
"travis-deploy-once": "5.0.11"
},
"types": "./index.d.ts"
}