forked from Strider-CD/strider-simple-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.25 KB
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
{
"name": "strider-simple-runner",
"description": "Simple in-process worker implementation for Strider",
"version": "0.13.1",
"homepage": "http://github.com/Strider-CD/strider-simple-runner",
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/Strider-CD/strider-simple-runner"
},
"dependencies": {
"async": "~0.1.22",
"lodash": "~1.3.1",
"eventemitter2": "~0.4.13",
"strider-runner-core": "~2.0.0",
"strider-extension-loader": "~0.4.3",
"fs-extra": "~0.8.1",
"dirkeeper": "~0.2.0",
"json-stable-stringify": "~1.0.1"
},
"devDependencies": {
"mocha": "^1.21.1",
"chai": "~1.7.2",
"expect.js": "~0.2.0",
"jshint": "~2.1.9"
},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"keywords": [
"strider",
"tests"
],
"scripts": {
"test": "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 <niallo@frozenridge.co> (http://frozenridge.co)",
"contributors": [
"Peter Braden <peter@frozenridge.co> (http://frozenridge.co)",
"Jared Forsyth"
]
}