forked from marcells/node-build-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.51 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
{
"name": "node-build-monitor",
"version": "0.9.20",
"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": "2.4.1",
"errorhandler": "1.5.0",
"express": "4.15.3",
"moment": "2.18.1",
"morgan": "1.8.2",
"pug": "2.0.0-beta11",
"request": "2.81.0",
"socket.io": "2.0.3",
"striptags": "3.0.1"
},
"devDependencies": {
"chai": "4.0.2",
"grunt": "1.0.1",
"grunt-bump": "^0.8.0",
"grunt-contrib-jshint": "1.1.0",
"grunt-contrib-watch": "1.0.0",
"grunt-mocha-test": "0.13.2",
"mocha": "3.4.2",
"nock": "9.0.13",
"rewire": "2.5.2",
"should": "11.2.1",
"sinon": "2.3.4",
"sinon-chai": "2.11.0"
},
"keywords": [],
"repository": "git://github.com/marcells/node-build-monitor",
"scripts": {
"start": "export PORT=8080 && node app/app.js",
"ci": "grunt ci",
"test": "grunt mochaTest:test",
"pkg": "pkg -c ./package.json --out-dir ./release ./app/app.js"
},
"engines": {
"node": ">= 6.10.0"
},
"pkg": {
"scripts": ["app/services/**/*.js", "node_modules/pug/register.js", "node_modules/pug/lib/**/*.js"],
"assets": ["app/public/**/*", "app/views/**/*", "app/config.json"]
},
"license": "MIT"
}