forked from conveyal/modeify
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 2.03 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
{
"private": true,
"main": "server.js",
"dependencies": {
"analytics-node": "^1.2.0",
"async": "~0.9.0",
"aws-sdk": "^2.1.19",
"batch": "^0.5.2",
"bcryptjs": "^2.0.2",
"body-parser": "^1.12.0",
"compression": "^1.0.2",
"cookie-session": "^1.0.1",
"debug": "^2.1.3",
"errorhandler": "^1.3.5",
"express": "^5.0.0-alpha.1",
"hogan.js": "^3.0.1",
"js-yaml": "^3.2.7",
"juice": "~1.0.0",
"leaflet-label": "^0.2.1-0",
"mandrill-api": "^1.0.37",
"mongoose": "^4.0.0",
"monquery": "^0.2.0",
"morgan": "^1.5.2",
"node-logentries": "~0.1.3",
"node-uuid": "^1.4.3",
"nodemon": "^1.3.7",
"on-finished": "^2.2.0",
"request": "^2.69.0",
"serve-static": "^1.9.2",
"superagent": "~0.21.0",
"to-slug-case": "~0.1.2",
"winston": "~0.9.0"
},
"devDependencies": {
"cli-table": "^0.3.1",
"commander": "^2.7.1",
"component": "^1.1.0",
"component-builder": "^1.2.1",
"component-resolver": "^1.3.0",
"html-minifier": "^0.6.9",
"istanbul": "^0.3.8",
"js-beautify": "^1.5.5",
"jshint": "^2.6.3",
"marked": "^0.3.3",
"mime": "^1.3.4",
"mkdirp": "~0.5.0",
"mocha": "^2.2.1",
"myth": "^1.4.0",
"nightmare": "^1.7.0",
"polyline-encoded": "0.0.7",
"prompt": "^0.2.14",
"should": "^5.2.0",
"sqwish": "~0.2.2",
"supertest": "~0.15.0",
"uglify-js": "^2.4.17"
},
"scripts": {
"start": ". deployment/env && make serve",
"run": ". deployment/env && bin/server",
"stop": "make stop",
"postinstall": "npm rebuild",
"test": "NODE_ENV=test node_modules/.bin/mocha --recursive --reporter spec --require should --slow 10 --timeout 10s",
"test-cov": "NODE_ENV=test node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha -- --recursive --reporter dot --require should --slow 10 --timeout 2m",
"test-travis": "NODE_ENV=test node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --recursive --reporter dot --require should --slow 10 --timeout 2m"
}
}