forked from marcells/node-build-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.65 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "node-build-monitor",
"version": "0.9.58",
"description": "A Build Monitor written in Node.js, which supports several build services and can be extended easily.",
"author": "Marcell Spies <marcells@gmx.de>",
"contributors": [
{
"name": "Marcell Spies",
"email": "marcells@gmx.de"
},
{
"name": "Ken Toley",
"email": "kenneth.toley@dictionary.com"
}
],
"dependencies": {
"async": "2.6.0",
"errorhandler": "1.5.0",
"express": "4.16.2",
"graphql.js": "^0.4.20",
"httpntlm": "^1.7.5",
"moment": "2.21.0",
"morgan": "^1.9.1",
"pug": "^2.0.3",
"request": "^2.88.0",
"socket.io": "2.0.4",
"striptags": "3.1.1",
"xml2js": "0.4.19"
},
"devDependencies": {
"chai": "4.1.2",
"chai-shallow-deep-equal": "^1.4.6",
"grunt": "^1.0.4",
"grunt-bump": "^0.8.0",
"grunt-contrib-jshint": "1.1.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-mocha-test": "0.13.3",
"mocha": "5.0.4",
"nock": "9.2.3",
"rewire": "3.0.2",
"should": "13.2.1",
"sinon": "4.4.2",
"sinon-chai": "3.0.0"
},
"keywords": [],
"repository": "git://github.com/marcells/node-build-monitor",
"scripts": {
"start": "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"
}