-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.33 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": "node-pipeline",
"description": "Raspberry Pipeline Configuration Interface",
"author": "Tarcio Saraiva <[email protected]> (http://tarciosaraiva.com)",
"license": "MIT",
"version": "0.0.1",
"preferGlobal": "true",
"bin": {
"node-pipeline": "./bin/www"
},
"scripts": {
"start": "node ./bin/www",
"test": "mocha --recursive -R spec",
"test-jenkins": "mocha --recursive -C -R xunit test/ > test-reports.xml",
"init-pipeline": "node ./bin/jenkins"
},
"repository": {
"type": "git",
"url": "git://github.com/tarciosaraiva/node-pipeline.git"
},
"engines": {
"node": ">=0.10.0"
},
"bugs": {
"url": "https://github.com/tarciosaraiva/node-pipeline/issues"
},
"keywords": [
"raspberrypi",
"build pipeline",
"configuration",
"pipeline configuration",
"lpd8806",
"aws sqs"
],
"homepage": "https://github.com/tarciosaraiva/node-pipeline",
"dependencies": {
"batch": "^0.5.x",
"body-parser": "latest",
"debug": "latest",
"express": "latest",
"jade": "^1.3.x",
"winston": "^0.7.x",
"express-winston": "^0.2.x",
"multiparty": "latest",
"nconf": "^0.6.x",
"node-localstorage": "^0.3.4",
"sqs": "^0.1.x"
},
"devDependencies": {
"mocha": "^1.x.x",
"sinon": "^1.x.x",
"chai": "^1.x.x",
"rewire": "latest"
}
}