forked from marcells/node-build-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "node-build-monitor",
"version": "0.9.8",
"description": "A Build Monitor written in Node.js, which supports several build services and can be extended easily.",
"author": "Marcell Spies <[email protected]>",
"contributors": [
{
"name": "Marcell Spies",
"email": "[email protected]"
},
{
"name": "Ken Toley",
"email": "[email protected]"
}
],
"dependencies": {
"async": "1.5.2",
"errorhandler": "1.4.3",
"express": "4.13.4",
"jade": "1.11.0",
"moment": "2.11.2",
"morgan": "1.6.1",
"request": "2.69.0",
"socket.io": "1.4.5"
},
"devDependencies": {
"grunt": "0.4.5",
"grunt-contrib-jshint": "0.12.0",
"grunt-contrib-watch": "0.6.1",
"grunt-mocha-test": "0.12.7",
"mocha": "2.4.5",
"nock": "8.0.0",
"rewire": "2.5.2",
"should": "8.2.2",
"chai": "3.5.0",
"sinon": "1.17.5",
"sinon-chai": "2.8.0"
},
"keywords": [],
"repository": "git://github.com/marcells/node-build-monitor",
"scripts": {
"start": "node app/app.js",
"ci": "grunt ci",
"test": "grunt mochaTest:test"
},
"engines": {
"node": ">= 0.8.0"
},
"license": "MIT"
}