-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 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
{
"name": "@runnable/loki",
"version": "3.3.0",
"description": "Runnable Docker/Swarm library with batteries",
"main": "index.js",
"private": false,
"scripts": {
"build": "babel --out-dir . lib",
"prepublish": "not-in-install && npm run build || in-install",
"doc": "jsdoc index.js -d doc/; open -a 'Google Chrome' doc/index.html",
"lint": "standard --verbose",
"check-coverage": "istanbul check-coverage && echo 'Coverage check successful!'",
"coverage": "DOCKER_CERT_PATH=./test/fixtures/certs NODE_ENV=test NODE_PATH=./lib istanbul cover ./node_modules/mocha/bin/_mocha -- $npm_package_options_mocha test/ && npm run check-coverage",
"unit": "DOCKER_CERT_PATH=./test/fixtures/certs NODE_ENV=test NODE_PATH=./lib mocha $npm_package_options_mocha test",
"test": "npm run lint && npm run coverage"
},
"directories": {
"test": "test"
},
"keywords": [
"dockerode",
"swarmerode",
"docker",
"datadog",
"runnable"
],
"author": "Anton Podviaznikov <[email protected]> (http://www.runnable.com)",
"license": "MIT",
"options": {
"mocha": "--timeout 5000 --bail --recursive --reporter spec"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"dependencies": {
"101": "^1.5.0",
"bluebird": "^3.3.5",
"bunyan": "^1.8.1",
"dockerode": "2.2.10",
"dogerode": "0.2.0",
"in-publish": "^2.0.0",
"joi": "^9.0.4",
"swarmerode": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"jsdoc": "^3.4.0",
"standard": "8.4.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"istanbul": "^0.4.3",
"mocha": "^3.0.0",
"sinon": "^1.17.3",
"sinon-as-promised": "^4.0.0"
}
}