-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
{
"name": "brinkbit-express-errors",
"version": "0.1.6",
"description": "Error handling middleware for brinkbit custom errors",
"main": "src/index.js",
"scripts": {
"debug": "cross-env NODE_ENV=debug nyc --reporter=html --reporter=text mocha test/index.js",
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text mocha test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Brinkbit/brinkbit-express-errors.git"
},
"keywords": [
"brinkbit",
"express",
"middleware",
"error",
"http"
],
"author": "Brinkbit",
"license": "MIT",
"bugs": {
"url": "https://github.com/Brinkbit/brinkbit-express-errors/issues"
},
"homepage": "https://github.com/Brinkbit/brinkbit-express-errors#readme",
"dependencies": {
"brinkbit-custom-errors": "^0.4.2",
"brinkbit-logger": "^0.4.3"
},
"devDependencies": {
"babel-plugin-__coverage__": "^11.0.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"cross-env": "^3.1.4",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-brinkbit": "^0.1.10",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"mocha": "^3.2.0",
"nyc": "^10.0.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0"
}
}