-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.53 KB
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
55
56
57
58
59
{
"name": "express-safe-async",
"version": "3.0.0",
"description": "[@AsyncHandled] Elegant async error handling Decorator for async router function(controller) in express.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"homepage": "https://github.com/techbless/express-safe-async",
"repository": {
"type": "git",
"url": "https://github.com/techbless/express-safe-async"
},
"author": {
"name": "Yunbin Chang",
"email": "yunbin@hansung.ac.kr",
"url": "https://techbless.github.io/about-me"
},
"keywords": [
"Express",
"express",
"async",
"middleware",
"Router",
"route",
"controller",
"error",
"exception",
"handle",
"handler",
"wrapper",
"decorator"
],
"scripts": {
"lint": "eslint lib/**/*.ts",
"lint:fix": "eslint --fix lib/**/*.ts",
"test": "mocha -r ts-node/register ./tests/**/*.spec.ts",
"build": "tsc"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/express": "^4.17.6",
"@types/mocha": "^7.0.2",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"express": "^4.17.1",
"mocha": "^7.1.1",
"prettier": "^2.0.4",
"supertest": "^4.0.2",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
}
}