-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "restify-boilerplate",
"version": "0.1.2",
"description": "Node Restify Boilerplate",
"main": "index.js",
"scripts": {
"test": "mocha test --reporter spec",
"development": "npm install && NODE_ENV=development forever -w index.js 9000",
"production": "npm install && NODE_ENV=production forever -w index.js 9000"
},
"repository": {
"type": "git",
"url": "https://github.com/tianpermana/restify-boilerplate.git"
},
"author": "Tian Permana <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/tianpermana/restify-boilerplate/issues"
},
"homepage": "https://github.com/tianpermana/restify-boilerplate",
"dependencies": {
"async": "~0.6.2",
"bcrypt": "^0.7.7",
"moment": "^2.5.1",
"mongoose": "^3.8.21",
"node-restify-validation": "0.0.6",
"node-uuid": "^1.4.2",
"require-directory": "^1.2.0",
"restify": "^2.7.0",
"underscore": "^1.6.0"
},
"devDependencies": {
"mocha": "^1.18.2",
"chai": "^1.9.1"
}
}