forked from kaievns/express-yields
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "express-async-errors",
"version": "3.1.1",
"description": "Async/await error handling support for expressjs",
"main": "index.js",
"scripts": {
"coverage": "nyc mocha test.js",
"report": "nyc report --reporter=html",
"test": "mocha test.js",
"lint": "eslint .",
"precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidbanham/express-async-errors.git"
},
"keywords": [
"expressjs",
"async/await",
"async",
"await",
"es6"
],
"author": "david@banham.id.au",
"license": "ISC",
"bugs": {
"url": "https://github.com/davidbanham/express-async-errors/issues"
},
"homepage": "https://github.com/davidbanham/express-async-errors#readme",
"peerDependencies": {
"express": "^4.16.2"
},
"devDependencies": {
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"express": "^4.16.2",
"husky": "^0.14.3",
"mocha": "^4.0.1",
"nyc": "^13.0.1",
"supertest": "^3.0.0"
}
}