-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.11 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
70
71
72
73
74
75
76
77
{
"name": "boomerang-express",
"preferGlobal": true,
"description": "A recieving Server for boomerang.js data queries",
"homepage": "https://github.com/andreas-marschke/boomerang-express",
"version": "0.0.1",
"release": "1",
"author": {
"name": "Andreas Marschke",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Andreas Marschke",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/andreas-marschke/boomerang-express.git"
},
"keywords": [
"RUM",
"monitoring",
"webdev"
],
"private": true,
"scripts": {
"start": "node_modules/.bin/forever --minUptime 1000ms --spinSleepTime 1000ms -l log/app.log -o log/stdout.log -e log/stderr.log -p . -a --pidFile log/forever.pid --sourceDir . --workingDir . --plain --watch --watchDirectory . --watchIgnore log/app.log --watchIgnore log/stdout.log --watchIgnore log/stderr.log app.js",
"test": "node_modules/.bin/grunt test"
},
"optionalDependencies": {
"bunyan-logstash": "git://github.com/yubl/bunyan-logstash#master",
"nedb": "^0.11.1"
},
"dependencies": {
"body-parser": "^1.9.0",
"bunyan": "^1.1.0",
"cookie-parser": "^1.3.3",
"deepmerge": "^0.2.7",
"express": "^4.10.2",
"express-bunyan-logger": "^1.1.0",
"forever": ">= 0.10.8",
"helmet": "^0.5.2",
"lodash": "^2.4.1",
"mongodb": "^2.0.8",
"node-conf": ">= 0.0.5",
"serve-static": "^1.6.3",
"useragent": "^2.1.1"
},
"bin": {
"boomerang-express": "./app.js"
},
"main": "./app.js",
"engines": {
"node": ">= 0.10.x"
},
"readmeFilename": "README.md",
"devDependencies": {
"blanket": "^1.1.6",
"chai": "^1.9.2",
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "~0.6.0",
"grunt-easy-rpm": "~1.4.0",
"grunt-eslint": "^2.0.0",
"grunt-exec": "~0.4.6",
"grunt-mocha-test": "^0.12.3",
"grunt-plato": "^1.3.0",
"lodash-deep": "^1.4.2",
"mocha": "^2.0.1",
"mockery": "^1.4.0",
"mongodb-fixtures": "0.0.5",
"shortid": "~2.0.1"
},
"license": "MIT"
}