forked from florianholzapfel/express-restify-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.72 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
{
"author": {
"email": "[email protected]",
"name": "Florian Holzapfel"
},
"dependencies": {
"async": "~1.5.0",
"lodash": "~4.5.0",
"mongoose-detective": "~0.1.0",
"moredots": "~0.1.0",
"weedout": "~0.1.0"
},
"peerDependencies": {
"mongoose": "^4.0.0"
},
"description": "Easily create a flexible REST interface for mongoose models",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"body-parser": "~1",
"express": "~4",
"istanbul": "~0.4",
"method-override": "~2",
"mocha": "~2",
"request": "~2",
"restify": "~3",
"sinon": "~1",
"standard": "^6.0.0"
},
"engines": {
"node": ">=0.10"
},
"homepage": "http://florianholzapfel.github.io/express-restify-mongoose/",
"keywords": [
"ReST",
"express",
"restify",
"mongodb",
"mongoose",
"model"
],
"license": "MIT",
"main": "./lib/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",
"compile": "babel src -d lib",
"prepublish": "npm test",
"pretest": "npm run lint && npm run compile",
"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 --compilers js:babel-core/register -R spec ./test/unit.js",
"test-filter": "mocha -R spec ./test/integration/resource_filter.js --compilers js:babel-core/register --timeout 10s",
"test-express": "mocha -R spec ./test/express.js --compilers js:babel-core/register --timeout 10s",
"test-restify": "mocha -R spec ./test/restify.js --compilers js:babel-core/register --timeout 10s",
"test-cov-unit": "istanbul cover node_modules/mocha/bin/_mocha -- --compilers js:babel-core/register -R spec ./test/unit.js",
"test-cov-express": "istanbul cover node_modules/mocha/bin/_mocha -- --compilers js:babel-core/register -R spec ./test/express.js --timeout 10s",
"test-cov-restify": "istanbul cover node_modules/mocha/bin/_mocha -- --compilers js:babel-core/register -R spec ./test/restify.js --timeout 10s"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"lib/"
],
"standard": {
"ignore": [
"lib"
],
"globals": [
"describe",
"before",
"beforeEach",
"after",
"afterEach",
"it"
]
},
"version": "3.1.0"
}