-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 780 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 780 Bytes
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
{
"name": "strider-template",
"version": "1.0.0",
"description": "Plugin template for Strider CD",
"main": "webapp.js",
"scripts": {
"test": "mocha -R spec --recursive test"
},
"repository": {
"type": "git",
"url": "https://github.com/bitwit/strider-template.git"
},
"keywords": [
"strider",
"plugin",
"template"
],
"author": "Kyle Newsome <kyle@bitwit.ca>",
"license": "ISC",
"dependencies": {
},
"strider": {
"type": "job",
"id": "template",
"title": "Plugin Template",
"worker": "worker.js",
"webapp": "webapp.js",
"icon": "icon.png",
"config": {
"controller": "TemplateCtrl"
}
},
"devDependencies": {
"chai": "^1.9.1",
"mocha": "^1.20.1",
"sinon-chai": "^2.5.0"
}
}