-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
59 lines (59 loc) · 1.42 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
{
"name": "restify-mongoose",
"version": "5.0.0",
"description": "Expose mongoose models as REST resources",
"author": "[email protected]",
"contributors": [
{
"name": "Matthieu Bacconnier",
"email": "[email protected]",
"url": "http://blog.neamar.fr"
},
{
"name": "Dave Jensen",
"email": "[email protected]",
"url": "http://build47.com"
},
{
"name": "Ismar Slomic",
"email": "[email protected]"
}
],
"main": "index.js",
"scripts": {
"test": "nyc --reporter=text-summary mocha --recursive --throw-deprecation",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "standard-version"
},
"keywords": [
"restify",
"mongoose",
"REST",
"resource"
],
"license": "BSD-2-Clause",
"dependencies": {
"async": "^3.1.0",
"mongoose": "^5.7.5",
"restify": "^8.4.0",
"restify-errors": "^8.0.1"
},
"devDependencies": {
"coveralls": "^3.0.7",
"drop-mongodb-collections": "^1.2.5",
"eslint": "^6.5.1",
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"should": "^13.2.3",
"sinon": "^7.5.0",
"standard-version": "^7.0.0",
"supertest": "^4.0.2"
},
"bugs": "https://github.com/saintedlama/restify-mongoose/issues",
"repository": {
"type": "git",
"url": "https://github.com/saintedlama/restify-mongoose.git"
}
}