forked from askmhs/restify-mongoose-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 869 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
39
40
{
"name": "restidy-mongoose-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test nyc mocha test/"
},
"author": "Muhammad Harits Syaifulloh",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"cross-env": "^5.0.5",
"mocha": "^3.5.2",
"nyc": "^11.2.1"
},
"nyc": {
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"bluebird": "^3.5.0",
"director.js": "^1.2.0",
"mongoose": "^4.11.11",
"restify": "^5.2.0"
}
}