-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.87 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
{
"name": "errorhandler-express",
"version": "1.0.8",
"description": "An express middleware module to generate HTTP responses on error.",
"main": "index.js",
"scripts": {
"ncu": "./node_modules/.bin/ncu",
"dev": "export DEBUG=kubide* && export NODE_ENV=development && npm update --save && clear && npm run check && ./node_modules/.bin/nodemon --inspect",
"test": "export DEBUG=kubide* && clear && ./node_modules/.bin/mocha --reporter spec --recursive ./tests/*.spec.js",
"lint": "./node_modules/.bin/eslint .",
"unused": "./node_modules/.bin/npm-check ",
"check": "./node_modules/.bin/ncu",
"update": "./node_modules/.bin/npm-check -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kubide/k-express-errorhandler.git"
},
"directories": {
"lib": "./lib"
},
"keywords": [
"i18n",
"x-locale",
"express"
],
"author": "Kubide <[email protected]> (http://kubide.es)",
"contributors": [
"Ángel Luis Quesada <[email protected]> (http://gelito.me)",
"Eneko Lakasta <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Kubide/k-express-errorhandler/issues"
},
"homepage": "https://github.com/Kubide/k-express-errorhandler#readme",
"engines": {
"node": ">= 4.4.2"
},
"dependencies": {
"debug": "^2.6.3",
"express": "^4.15.2",
"i18n-xlocale": "0.0.1",
"lodash": "^4.17.4",
"mocha": "^2.5.3",
"mongoose": "^4.9.4",
"nodemon": "^1.11.0"
},
"devDependencies": {
"chai": "^3.3.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.8.0",
"express": "^4.13.4",
"mocha": "^3.2.0",
"nodemon": "^1.7.1",
"npm-check": "^5.4.0",
"npm-check-updates": "^2.10.3",
"supertest": "^3.0.0"
}
}