-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 886 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
31
32
33
34
{
"name": "marvel-node",
"version": "0.0.1",
"description": "Marvel single page application API",
"main": "server.js",
"scripts": {
"test": "mocha",
"test-coverage": "npm test && istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"install-local": "npm install -g mocha & npm install -g node-inspector & npm install",
"start": "NODE_ENV=prod node server.js",
"debug": "NODE_ENV=debug node-debug server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/trwalker/marvel-node.git"
},
"keywords": [
"none"
],
"author": "Tim Walker",
"license": "MIT",
"devDependencies": {
"chai": "^2.1.2",
"istanbul": "^0.3.8",
"mocha": "^2.2.1",
"sinon": "^1.14.1"
},
"dependencies": {
"body-parser": "^1.12.2",
"cluster-service": "^1.0.5",
"express": "^4.12.3",
"request": "^2.55.0"
}
}