-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
47 lines (47 loc) · 1.11 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
{
"name": "strider-runner-core",
"version": "2.0.2",
"description": "Just run those jobs. Decoupled from load balancing, joq queues, etc.",
"main": "index.js",
"scripts": {
"lint": "eslint *.js lib",
"test-only": "mocha -R spec",
"pretest": "npm run-script lint",
"test": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"posttest": "istanbul check-coverage",
"prepublish": "npm test && npm prune"
},
"repository": {
"type": "git",
"url": "https://github.com/Strider-CD/strider-runner-core.git"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"strider",
"worker",
"testing",
"ci",
"continuous",
"deployment"
],
"author": "Jared Forsyth <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"chai": "~3.5.0",
"eslint": "^4.19.1",
"expect.js": "~0.3.1",
"istanbul": "~0.4.3",
"mocha": "^5.2.0"
},
"dependencies": {
"async": "~2.6.4",
"debug": "^2.2.0",
"execa": "^0.4.0",
"lodash": "^4.17.15",
"mkdirp": "~0.3.5",
"shell-quote": "^1.6.0"
}
}