-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.86 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
{
"name": "react-native-device-info",
"version": "2.2.2",
"description": "Get device information using react-native",
"main": "deviceinfo.js",
"typings": "./deviceinfo.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/react-native-community/react-native-device-info"
},
"scripts": {
"analyze": "npm run ts-check && npm run flow-check",
"dev-sync": "cp -r deviceinfo* *podspec default windows web android ios example/node_modules/react-native-device-info/",
"flow-check": "npx flow check-contents < deviceinfo.js.flow",
"lint": "npx eslint ./ --ignore-pattern example --ignore-pattern node_modules --fix --quiet",
"shipit": "np --no-yarn",
"ts-check": "npx tsc deviceinfo.d.ts --noEmit",
"precommit": "lint-staged && npm run analyze"
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add"
]
},
"keywords": [
"react-component",
"react-native",
"ios",
"android",
"windows",
"device",
"events",
"cocoapod"
],
"author": "Rebecca Hughes <[email protected]> (https://github.com/rebeccahughes)",
"contributors": [
{
"name": "Gant Laborde",
"email": "[email protected]",
"url": "https://github.com/gantman"
},
{
"name": "Mehdi Achour",
"email": "[email protected]",
"url": "https://github.com/machour"
},
{
"name": "Mike Hardy",
"email": "[email protected]",
"url": "https://github.com/mikehardy"
}
],
"license": "MIT",
"devDependencies": {
"@react-native-community/eslint-config": "0.0.5",
"eslint": "^6.0.1",
"flow-bin": "^0.102.0",
"husky": "^3.0.0",
"lint-staged": "^9.0.2",
"np": "^5.0.3",
"prettier": "^1.18.2",
"react": "^16.8.3",
"typescript": "^3.5.2"
},
"eslintConfig": {
"extends": "@react-native-community"
},
"dependencies": {}
}