forked from rgrove/rawgit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (27 loc) · 856 Bytes
/
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
{
"name" : "rawgit",
"version": "0.0.1",
"private": true,
"dependencies": {
"express" : "4.13.1",
"express-handlebars": "2.0.1",
"lru-cache" : "2.6.5",
"mime-db" : "1.15.0",
"morgan" : "1.6.1",
"newrelic" : "1.22.1",
"on-finished" : "2.3.0"
},
"devDependencies": {
"chai" : "^3.1.0",
"eslint" : "^0.24.1",
"mocha" : "^2.2.5",
"nock" : "^2.7.0",
"supertest": "0.15.0"
},
"scripts": {
"clean-fixtures": "scripts/clean-fixtures.js test/fixtures/*.json",
"record-fixtures": "NOCK_BACK_MODE=record npm test && npm run-script clean-fixtures",
"start": "node web.js",
"test": "NODE_ENV=test mocha -R dot test/**/test.*.js"
}
}