-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
47 lines (47 loc) · 1.05 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-docker-runner",
"version": "1.5.3",
"description": "Run jobs inside of docker containers",
"main": "index.js",
"scripts": {
"lint": "eslint *.js lib",
"test": "npm run lint && node test/test.js",
"tdd": "mocha -w --recursive test/unit"
},
"repository": {
"type": "git",
"url": "https://github.com/Strider-CD/strider-docker-runner.git"
},
"strider": {
"id": "docker",
"type": "runner",
"title": "Docker",
"webapp": "index.js",
"icon": "icon.png",
"config": true
},
"keywords": [
"docker",
"strider"
],
"engines": {
"node": ">=4.2"
},
"author": "Jared Forsyth <[email protected]>",
"license": "MIT",
"dependencies": {
"async": "^2.0.1",
"debug": "^2.2.0",
"dockerode": "^2.3.0",
"dockerode-optionator": "^1.1.4",
"event-stream": "^3.3.4",
"lodash": "^4.14.1",
"strider-runner-core": "^2.0.0",
"strider-simple-runner": "^1.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.2.2",
"mocha": "^3.0.0"
}
}