-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.51 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
{
"name": "code-push-travis-cli",
"version": "1.2.0",
"description": "Automatic ci deploy of react-native app with code-push",
"main": "lib/index.js",
"bin": {
"code-push-travis": "./lib/bin/index.js"
},
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib coverage",
"coverage": "NODE_ENV=test NODE_PATH=src babel-node $(npm bin)/isparta cover node_modules/mocha/bin/_mocha -- --recursive",
"dev": "npm test -- --watch",
"lint": "eslint src test",
"test": "env NODE_ENV=test env NODE_PATH=src mocha --compilers js:babel-core/register --recursive test",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"code-push",
"deploy",
"ci",
"travis-ci",
"react-native"
],
"author": "Davide Bianchi <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/mondora/code-push-travis-cli.git"
},
"bugs": {
"url": "https://github.com/mondora/code-push-travis-cli/issues"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-plugin-rewire": "^1.0.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"eslint": "^3.7.0",
"isparta": "^4.0.0",
"lodash.omit": "^4.5.0",
"mocha": "^3.1.0",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"code-push-cli": "^1.12.6-beta",
"yargs": "^6.0.0"
}
}