forked from react-native-sensors/react-native-sensors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.12 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
{
"name": "react-native-sensors",
"version": "7.2.1-rc.2",
"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",
"format": "prettier --write ./src/*",
"test": "prettier --check ./src/*",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"main": "index.js",
"types": "index.d.ts",
"repository": "[email protected]: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": "[email protected]",
"url": "http://danielmschmidt.de"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"timers": "fake",
"projects": [
{
"displayName": "Unit",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"tests/*"
],
"timers": "fake"
}
]
},
"babel": {
"presets": [
"react-native"
]
},
"license": "MIT",
"peerDependencies": {
"prop-types": "^15.6.0",
"react-native": ">=0.39.0",
"react-native-windows": "^0.73.11"
},
"dependencies": {
"rxjs": ">= 6"
},
"devDependencies": {
"all-contributors-cli": "6.1.2",
"babel-core": "6.26.3",
"babel-jest": "24.1.0",
"babel-preset-react-native": "4.0.0",
"husky": "4.2.3",
"jest": "24.1.0",
"metro-config": "^0.67.0",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"react": "^17.0.2",
"react-native": "^0.68.0",
"regenerator-runtime": "0.13.1",
"rxjs-marbles": "5.0.0",
"semantic-release": "17.3.9",
"travis-deploy-once": "5.0.11"
},
"files": [
"/RNSensors.podspec",
"/src/*.js",
"/index.*",
"/android/",
"/ios/",
"/windows/",
"/LICENSE",
"/README.md",
"/scripts/",
"/website/"
]
}