-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
59 lines (59 loc) · 1.46 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
{
"name": "strider-simple-runner",
"description": "Simple in-process worker implementation for Strider",
"version": "2.0.0",
"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": "^3.2.0",
"debug": "^4.1.1",
"dirkeeper": "^1.0.0",
"eventemitter2": "^6.4.0",
"fs-extra": "^9.0.0",
"json-stable-stringify": "~1.0.1",
"lodash": "^4.17.15",
"strider-extension-loader": "~0.4.6",
"strider-runner-core": "~2.0.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.0.0",
"expect.js": "^0.3.1",
"mocha": "^7.1.2",
"standard-version": "^8.0.0",
"tap-spec": "^5.0.0"
},
"optionalDependencies": {},
"engines": {
"node": ">=10"
},
"keywords": [
"strider",
"tests"
],
"scripts": {
"lint": "eslint *.js lib",
"test": "npm run lint && mocha -R tap test | tap-spec",
"tdd": "mocha -w test",
"release": "standard-version"
},
"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",
"Ilya Radchenko"
]
}