-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "expressed-boilerplate",
"version": "1.0.0",
"author": "Jake Marsh <jakemmarsh@gmail.com>",
"description": "A boilerplate for quickly building APIs on node.js and Express.",
"repository": {
"type": "git",
"url": "https://github.com/jakemmarsh/expressed-boilerplate.git"
},
"private": false,
"engines": {
"node": "^0.12.7"
},
"dependencies": {
"body-parser": "^1.13.3",
"change-case": "^3.0.0",
"compression": "^1.5.2",
"connect-busboy": "0.0.2",
"cookie-parser": "^1.3.5",
"dotenv": "^2.0.0",
"express": "^4.13.3",
"express-session": "^1.11.3",
"lodash": "^4.17.4",
"method-override": "^2.3.5",
"morgan": "^1.6.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"superagent": "^3.3.1",
"when": "^3.7.3"
},
"devDependencies": {
"apidoc": "^0.16.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"should": "^11.1.2",
"sinon": "^1.15.4",
"supertest": "^2.0.1",
"supervisor": "^0.12.0"
},
"scripts": {
"start": "node server.js",
"dev": "supervisor server.js",
"test": "istanbul cover --report html --dir \"__coverage__/\" --x \"__tests__/**/*\" --x \"server.js\" node_modules/.bin/_mocha -- -i \"__tests__/**/*.js\"",
"gen-docs": "apidoc -i api/controllers/ -o docs/"
}
}