forked from binci/binci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.55 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
89
90
91
92
93
94
95
96
97
98
{
"name": "binci",
"version": "4.2.0",
"description": "Utility for running containerized development workflows",
"keywords": [
"docker",
"container",
"test",
"testing",
"dev",
"workflow",
"task"
],
"engineStrict": true,
"engines": {
"node": ">=4"
},
"main": "index.js",
"files": [
"src",
"index.js"
],
"bin": {
"binci": "index.js"
},
"preferGlobal": true,
"scripts": {
"test": "npm run lint -s && npm run test:cover -s",
"test:cover": "istanbul cover _mocha test/src/**/*.spec.js",
"test:watch": "nodemon --exec \"npm run test:cover -s || exit 1\"",
"e2e": "node test/system/run.js",
"lint": "standard --fix --verbose | snazzy",
"build": "npm run build:mac && npm run build:linux && npm run build:windows",
"build:mac": "pkg . -t node6-mac --out-dir=./bin/mac",
"build:linux": "pkg . -t node6-linux --out-dir=./bin/linux",
"build:windows": "pkg . -t node6-win --out-dir=./bin/windows",
"release:patch": "npm test && npm version patch && git push origin master && git push --tags && npm publish",
"release:minor": "npm test && npm version minor && git push origin master && git push --tags && npm publish",
"release:major": "npm test && npm version major && git push origin master && git push --tags && npm publish"
},
"homepage": "https://github.com/Binci/binci",
"repository": {
"type": "git",
"url": "https://github.com/Binci/binci"
},
"bugs": {
"url": "https://github.com/Binci/binci/issues"
},
"author": "Kent Safranski <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "^3.3.0",
"chai-as-promised": "^6.0.0",
"dirty-chai": "^1.2.2",
"istanbul": "^0.4.3",
"mocha": "^2.3.3",
"mocha-sinon": "^1.1.4",
"nodemon": "^1.11.0",
"pkg": "^3.0.4",
"proxyquire": "^1.7.11",
"rimraf": "^2.6.1",
"sinon": "^1.17.0",
"sinon-chai": "^2.8.0",
"snazzy": "^6.0.0",
"standard": "^8.6.0"
},
"dependencies": {
"bluebird": "^3.4.6",
"chalk": "^1.1.1",
"halcyon": "^0.19.1",
"input": "^1.0.1",
"js-yaml": "^3.4.2",
"log-symbols": "^1.0.2",
"minimist": "^1.2.0",
"ora": "^0.3.0",
"os-tmpdir": "^1.0.2",
"semver-compare": "^1.0.0",
"shortid": "^2.2.6",
"update-notifier": "^2.1.0"
},
"standard": {
"ignore": [
"coverage"
],
"globals": [
"describe",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect",
"sinon",
"cwd",
"proxyquire"
]
}
}