-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 790 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 790 Bytes
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
{
"name": "@dvpnt/express-async-patch",
"version": "1.0.0",
"description": "simple express monkey patch for async handlers support",
"main": "index.js",
"scripts": {
"lint": "eslint ./",
"test": "tap --bail --100 test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dvpnt/express-async-patch.git"
},
"author": "Aleksey Timchenko <flegmatik.bel@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dvpnt/express-async-patch/issues"
},
"homepage": "https://github.com/dvpnt/express-async-patch#readme",
"devDependencies": {
"eslint": "5.7.0",
"eslint-config-dvpnt": "3.1.0",
"express": "4.17.1",
"supertest": "4.0.2",
"tap": "14.4.1"
},
"peerDependencies": {
"express": "4"
}
}