-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "mongoose-errors",
"version": "1.1.2",
"description": "Mongoose error handler normalizer",
"main": "index.js",
"engines": {
"node": ">=7.6.0"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --watch test/**/bootstrap.spec.js test/**/*spec.js --reporter spec",
"pretest": "eslint --ext .js .",
"lint": "eslint --ext .js .",
"lint:fix": "eslint --fix --ext .js ."
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kasongoyo/mongoose-errors.git"
},
"keywords": [
"mongoose",
"errors",
"mongoose-errors"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/kasongoyo/mongoose-errors/issues"
},
"homepage": "https://github.com/kasongoyo/mongoose-errors#readme",
"dependencies": {
"http-errors": "^1.8.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^8.0.1",
"faker": "^4.1.0",
"mocha": "^6.1.4",
"mongoose": "^5.12.1"
}
}