-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
54
{
"name": "@dimosbotsaris/express-async-handler",
"version": "1.1.2",
"private": false,
"description": "Simple Express.js middleware to handle exceptions and catch error within express routes in asynchronous and pass them to your express error handlers.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"express",
"async",
"error middleware",
"await",
"error",
"handling"
],
"scripts": {
"build": "tsc",
"prepublish": "tsc",
"dev": "npx ts-node src/index.ts",
"test": "ts-mocha tests/**/*.test.ts",
"lint": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eldimious/express-async-handler.git"
},
"author": "Dimos Botsaris <botsaris.d@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/eldimious/express-async-handler/issues"
},
"homepage": "https://github.com/eldimious/express-async-handler#readme",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/expect": "^24.3.0",
"@types/express": "*",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"chai": "^4.3.4",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-prettier": "^4.0.0",
"node-mocks-http": "^1.11.0",
"prettier": "^2.5.1",
"sinon": "^13.0.1",
"sinon-chai": "^3.7.0",
"ts-mocha": "^8.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}