forked from florianholzapfel/express-restify-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.83 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"author": {
"email": "[email protected]",
"name": "Florian Holzapfel"
},
"dependencies": {
"async": "~2.5.0",
"ensure-array": "0.0.5",
"is-coordinates": "~2.0.0",
"lodash.defaults": "~4.2.0",
"lodash.get": "~4.4.2",
"lodash.has": "~4.5.2",
"lodash.isfunction": "^3.0.8",
"lodash.isplainobject": "~4.0.6",
"mongoose-detective": "~0.1.0",
"moredots": "~0.1.0",
"serialize-error": "~2.1.0",
"weedout": "~0.1.0"
},
"peerDependencies": {
"mongoose": "^4.0.0"
},
"description": "Easily create a flexible REST interface for mongoose models",
"devDependencies": {
"babel-preset-es2015": "^6.24.0",
"babel-register": "^6.26.0",
"body-parser": "^1.15.0",
"express": "^4.13.0",
"in-publish": "^2.0.0",
"istanbul": "1.1.0-alpha.1",
"method-override": "^2.3.10",
"mocha": "^4.0.0",
"request": "^2.69.0",
"restify": "^4.3.0",
"sinon": "^1.17.0",
"standard": "^10.0.0"
},
"engines": {
"node": ">=4"
},
"homepage": "http://florianholzapfel.github.io/express-restify-mongoose/",
"keywords": [
"ReST",
"express",
"restify",
"mongodb",
"mongoose",
"model"
],
"license": "MIT",
"main": "./src/express-restify-mongoose",
"name": "express-restify-mongoose",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/florianholzapfel/express-restify-mongoose.git"
},
"bugs": {
"url": "https://github.com/florianholzapfel/express-restify-mongoose/issues"
},
"scripts": {
"lint": "standard",
"prepublish": "in-publish && npm test || not-in-publish",
"pretest": "npm run lint",
"test": "npm run test-unit && npm run test-filter && npm run test-express && npm run test-restify",
"test-ci": "npm run test-unit && npm run test-filter && npm run test-cov-express && npm run test-restify",
"test-unit": "mocha -R spec ./test/unit.js",
"test-filter": "mocha -R spec ./test/integration/resource_filter.js --timeout 10s",
"test-express": "mocha -R spec ./test/express.js --timeout 10s",
"test-restify": "mocha -R spec ./test/restify.js --timeout 10s",
"test-cov-unit": "istanbul cover node_modules/mocha/bin/_mocha -- --require babel-register -R spec ./test/unit.js",
"test-cov-express": "istanbul cover node_modules/mocha/bin/_mocha -- --require babel-register -R spec ./test/express.js --timeout 10s",
"test-cov-restify": "istanbul cover node_modules/mocha/bin/_mocha -- --require babel-register -R spec ./test/restify.js --timeout 10s",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"src/"
],
"standard": {
"globals": [
"describe",
"before",
"beforeEach",
"after",
"afterEach",
"it"
]
},
"version": "4.3.0"
}