forked from bitwit/strider-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.07 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-template",
"version": "2.0.0",
"description": "Plugin template for Strider CD",
"homepage": "https://github.com/Strider-CD/strider-template",
"main": "webapp.js",
"scripts": {
"lint": "eslint *.js config lib",
"test": "npm run lint && istanbul cover node_modules/mocha/bin/_mocha --recursive test"
},
"repository": {
"type": "git",
"url": "https://github.com/Strider-CD/strider-template.git"
},
"keywords": [
"strider",
"plugin",
"template"
],
"engines": {
"node": ">=4.2"
},
"author": "Strider Continuous Deployment <[email protected]>",
"license": "MIT",
"dependencies": {
"debug": "^2.2.0"
},
"strider": {
"type": "job",
"id": "template",
"title": "Plugin Template",
"worker": "worker.js",
"webapp": "webapp.js",
"icon": "icon.png",
"config": {
"controller": "TemplateController"
}
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.1.1",
"istanbul": "^0.4.4",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
}
}