-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 902 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
35
36
37
38
{
"name": "node-demo",
"version": "1.0.0",
"description": "Demo for BayNode meetup",
"main": "app.js",
"scripts": {
"start": "node ./server.js",
"debug": "DEBUG=demo:* node ./server.js",
"nodemon": "DEBUG=demo:* nodemon ./server.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/tonypujals/node-demo.git"
},
"keywords": [
"node",
"demo",
"express"
],
"author": "Tony Pujals <tony@subfuzion.com> (http://twitter.com/subfuzion)",
"license": "ISC",
"bugs": {
"url": "https://github.com/tonypujals/node-demo/issues"
},
"homepage": "https://github.com/tonypujals/node-demo",
"dependencies": {
"body-parser": "^1.12.0",
"express": "^4.12.2",
"morgan": "^1.5.1"
},
"devDependencies": {
"debug": "^2.1.2",
"mocha": "^2.1.0",
"nodemon": "^1.3.7",
"supertest": "^0.15.0"
}
}