forked from Strider-CD/strider-simple-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.34 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
{
"name": "strider-simple-runner",
"description": "Simple in-process worker implementation for Strider",
"version": "1.0.2",
"homepage": "http://github.com/Strider-CD/strider-simple-runner",
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/Strider-CD/strider-simple-runner"
},
"license": "MIT",
"dependencies": {
"async": "^1.5.2",
"debug": "^2.2.0",
"dirkeeper": "^1.0.0",
"eventemitter2": "^1.0.3",
"fs-extra": "^0.30.0",
"json-stable-stringify": "~1.0.1",
"lodash": "^4.11.1",
"strider-extension-loader": "~0.4.3",
"strider-runner-core": "~2.0.0"
},
"devDependencies": {
"chai": "~1.7.2",
"eslint": "^3.1.1",
"expect.js": "~0.2.0",
"mocha": "^1.21.1"
},
"optionalDependencies": {},
"engines": {
"node": ">=4.2"
},
"keywords": [
"strider",
"tests"
],
"scripts": {
"lint": "eslint *.js lib",
"test": "npm run lint && mocha -R tap test",
"tdd": "mocha -w test"
},
"strider": {
"id": "simple-runner",
"title": "Default",
"icon": "icon.png",
"type": "runner",
"webapp": "index.js",
"config": false
},
"author": "Niall O'Higgins <[email protected]> (http://frozenridge.co)",
"contributors": [
"Peter Braden <[email protected]> (http://frozenridge.co)",
"Jared Forsyth"
]
}