forked from antonio-muniz/errorizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "errorizer",
"version": "1.0.0",
"description": "A Express middleware for organizing and returning custom errors in JSON APIs",
"main": "index.js",
"scripts": {
"coverage-upload": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "istanbul cover --include-all-sources true -x sample/** node_modules/mocha/bin/_mocha -- --timeout 5000 --recursive ./test",
"lint": "eslint .",
"test": "npm run lint && npm run coverage",
"test-ci": "npm test && npm run coverage-upload",
"test-debug": "mocha --debug-brk=5858 --recursive ./test",
"test-inspect": "mocha --inspect-brk=5858 --recursive ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antonio-muniz/errorizer.git"
},
"keywords": [
"express",
"error",
"handler",
"middleware",
"function",
"custom",
"json",
"api",
"http"
],
"author": "antonio-muniz",
"contributors": [
{
"name": "Antonio H. N. Muniz",
"email": "[email protected]",
"url": "https://github.com/antonio-muniz"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/antonio-muniz/errorizer/issues"
},
"homepage": "https://github.com/antonio-muniz/errorizer#readme",
"devDependencies": {
"coveralls": "^2.13.1",
"eslint": "^4.0.0",
"express": "^4.15.3",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"should": "^11.2.1",
"supertest": "^3.0.0"
}
}