-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.32 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
{
"name": "express-http-problem-details",
"version": "0.2.1",
"description": "HTTP problem details (RFC 7807) content negotiation for express",
"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 && ./node_modules/.bin/tsc --project tsconfig-build.json",
"lint-ts": "./node_modules/.bin/eslint --ext .ts .",
"test": "./node_modules/mocha/bin/mocha -r ts-node/register test/*.ts",
"test-ci": "./node_modules/mocha/bin/mocha -r ts-node/register test/*.ts --reporter mocha-junit-reporter",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PDMLab/express-http-problem-details.git"
},
"keywords": [
"express",
"error",
"http",
"problem",
"rfc7807",
"conneg"
],
"author": "Alexander Zeitler <alexander.zeitler@pdmlab.com>",
"contributors": [
{
"name": "Tomasz Pluskiewicz",
"url": "https://t-code.pl/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PDMLab/express-http-problem-details/issues"
},
"homepage": "https://github.com/PDMLab/express-http-problem-details#readme",
"peerDependencies": {
"express": "^4.16.4"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/express": "^4.17.8",
"@types/mocha": "^8.0.3",
"@types/node": "^10.17.17",
"@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",
"husky": "^4.3.0",
"mocha": "8.2.0",
"mocha-junit-reporter": "^2.0.0",
"should": "^13.2.3",
"standard-version": "^9.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"http-problem-details": "^0.1.5",
"http-problem-details-mapper": "^0.1.7"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}