This repository was archived by the owner on Jul 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.35 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": "express-json-api-error-handler",
"version": "6.0.1",
"description": "Express middleware for JSON:API error handling",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --verbose --coverage",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/kioannou/express-json-api-error-handler"
},
"author": "Konstantinos Ioannou <konsioannou@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/kioannou/express-json-api-error-handler/issues"
},
"homepage": "https://github.com/kioannou/express-json-api-error-handler#readme",
"keywords": [
"express",
"error",
"typescript",
"middleware",
"jsonapi",
"JSON:API",
"json"
],
"devDependencies": {
"@types/jest": "^23.3.14",
"jest": "^25.1.0",
"prettier": "^1.18.2",
"ts-jest": "^23.10.5",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
},
"dependencies": {
"@types/node": "^10.14.12"
}
}