-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "rnkit-code-push",
"description": "push code to your react native apps",
"main": "lib/index.js",
"author": "SimMan <liwei0990@gmail.com>",
"version": "1.1.0",
"scripts": {
"eslint": "eslint lib/",
"test": "npm run eslint && npm run test-cov",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -t 50000 --recursive -R spec test/"
},
"homepage": "https://github.com/rnkit/rnkit-code-push",
"bugs": "https://github.com/rnkit/rnkit-code-push/issues",
"repository": {
"type": "git",
"url": "https://github.com/rnkit/rnkit-code-push"
},
"keywords": [
"react",
"react-native",
"react-component",
"codepush",
"rnkit",
"rnkit-code-push",
"react-native-update"
],
"peerDependencies": {
"react": ">=15.3.1",
"react-native": ">=0.28"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-react": "^6.1.2",
"istanbul": "^0.4.5"
},
"license": "MIT"
}