-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.4 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
{
"name": "express-rescue",
"version": "1.2.0",
"description": "A wrapper for async functions which makes sure all async errors are passed to your errors handler",
"license": "MIT",
"keywords": [
"async",
"await",
"error",
"expressjs",
"rescue",
"unhandled"
],
"author": "Rafael Willians <me@rwillians.com>",
"contributors": [
"Lucas Santos <hello@lsantos.dev>",
"Fernando Cabral <nandocchaves@hotmail.com>"
],
"main": "dist/index.js",
"files": [
"dist/*"
],
"homepage": "https://github.com/rwillians/express-rescue#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rwillians/express-rescue.git"
},
"bugs": {
"url": "https://github.com/rwillians/express-rescue/issues"
},
"engines": {
"node": ">=7.6.0"
},
"scripts": {
"build": "tsc",
"coverage": "nyc --reporter=text npm test",
"coverage:report": "nyc report --reporter=lcov",
"lint": "standard --global describe --global it",
"lint:fix": "standard --global describe --global it --fix",
"test": "mocha test/*.test.js --check-leaks --full-trace --use_strict --recursive"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.21",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"sinon": "^13.0.1",
"standard": "^16.0.4",
"typescript": "^4.6.2"
}
}