-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 2.16 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "http-problem-details-mapper",
"version": "0.1.7",
"description": "Mapper functions for http-problem-details",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts"
],
"scripts": {
"build": "rm -rf ./dist && tsc --project tsconfig-build.json",
"lint-ts": "eslint --ext .ts .",
"test": "jest",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PDMLab/http-problem-details-mapper.git"
},
"keywords": [
"http",
"problem",
"error",
"http-problem",
"rfc7807",
"rest",
"api"
],
"author": "Alexander Zeitler <[email protected]>",
"contributors": [
{
"name": "Tomasz Pluskiewicz",
"url": "https://t-code.pl/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PDMLab/http-problem-details-mapper/issues"
},
"homepage": "https://github.com/PDMLab/http-problem-details-mapper#readme",
"peerDependencies": {
"http-problem-details": "^0.1.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.15",
"@types/node": "^10.14.5",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"http-problem-details": "^0.1.5",
"husky": "^4.3.0",
"jest": "^26.6.1",
"should": "^13.2.3",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"testRegex": "test/.+[Tt]ests?\\.tsx?$",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}