-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.14 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
{
"name": "@expresso/errors",
"version": "1.3.3",
"description": "@expresso express error handling suite",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"clean": "rm -rf",
"build:watch": "tsc -w",
"lint": "tslint --project tsconfig.json",
"build:clean": "npm run clean && npm run build",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/expresso/errors.git"
},
"keywords": [
"express",
"error",
"http",
"handling",
"middleware"
],
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/expresso/errors/issues"
},
"homepage": "https://github.com/expresso/errors#readme",
"dependencies": {
"@hapi/boom": "^9.1.0",
"slug": "^4.0.2"
},
"devDependencies": {
"@types/boom": "^7.3.0",
"@types/express": "^4.16.1",
"@types/slug": "^0.9.1",
"standard": "^16.0.3",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.1.2"
},
"files": [
"dist"
]
}