-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 942 Bytes
/
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": "express-async-support",
"version": "1.0.0",
"description": "hack of express to support async handler.",
"main": "index.js",
"author": "[email protected]",
"license": "MIT",
"keywords": [
"expressjs",
"async/await",
"async",
"await",
"es6"
],
"files": [
"README.md",
"index.js"
],
"scripts": {
"lint": "eslint --fix --ext .js .",
"test": "mocha --recursive",
"coverage": "nyc yarn test"
},
"dependencies": {
"express": "^4.16.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.16.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"supertest": "^6.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stayknight/express-async-support.git"
},
"bugs": {
"url": "https://github.com/stayknight/express-async-support/issues"
},
"homepage": "https://github.com/stayknight/express-async-support#readme"
}