-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.15 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
{
"name": "@rill/mongoose",
"description": "Resource based crud api generator for Rill and Mongoose.",
"version": "0.5.5",
"author": "Dylan Piercey <[email protected]>",
"browser": "browser.js",
"bugs": "https://github.com/rill-js/mongoose/issues",
"dependencies": {
"del-values": "^1.0.0"
},
"devDependencies": {
"@rill/body": "^1.3.0",
"lodash": "^4.15.0",
"mocha": "^4.1.0",
"mongoose": "^5.0.0-rc0",
"rill": "^7.0.2",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"supertest": "^3.0.0"
},
"homepage": "https://github.com/rill-js/mongoose",
"keywords": [
"api",
"crud",
"mongo",
"mongodb",
"mongoose",
"rest",
"rill"
],
"license": "MIT",
"main": "lib/index.js",
"peerDependencies": {
"mongoose": "x",
"rill": "x"
},
"repository": {
"type": "git",
"url": "https://github.com/rill-js/mongoose"
},
"scripts": {
"lint": "standard --verbose | snazzy",
"test": "npm run lint && mocha ./**/*.test.js"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach",
"after",
"afterEach"
]
}
}