-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.52 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
{
"name": "react-native-appstate-listener",
"version": "1.0.0",
"description": "Adapt React Native AppState changes to the React component lifecycle",
"main": "index.js",
"files": ["index.js"],
"scripts": {
"format": "prettier --write '**/*.js'",
"lint": "eslint '**/*.js' --max-warnings 0",
"precommit": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodingZeal/react-native-appstate-listener.git"
},
"author": "Randy Coulman <randy@codingzeal.com> (http://open.codingzeal.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodingZeal/react-native-appstate-listener/issues"
},
"homepage": "https://github.com/CodingZeal/react-native-appstate-listener#readme",
"keywords": [
"react-native-component",
"react-component",
"react-native",
"appstate",
"ios",
"android"
],
"lint-staged": {
"*.js": "prettier --list-different"
},
"dependencies": {
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.1.1",
"eslint-config-zeal": "^1.0.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-react-native": "^2.3.2",
"husky": "^0.13.4",
"lint-staged": "^3.6.0",
"prettier": "^1.4.0",
"react": "16.0.0-alpha.6",
"react-native": "^0.44.2"
}
}