-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.34 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
89
90
91
92
93
{
"name": "express-http-warning",
"version": "0.1.2",
"description": "Create warnings for HTTP responses in express following RFC draft-cedik-http-warning-01",
"main": "dist/registerwarnings.js",
"types": "dist/registerwarnings.d.ts",
"directories": {
"test": "test"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts"
],
"scripts": {
"build": "tsc",
"postbuild": "cat ./@types/express/index.d.ts >> ./dist/registerwarnings.d.ts",
"prerelease": "yarn build",
"release": "standard-version",
"test": "ts-mocha -p tsconfig.json test/**/*.ts",
"lint-ts": "eslint --ext .ts ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/PDMLab/express-http-warning.git"
},
"keywords": [
"expressjs",
"express",
"hateoas",
"http",
"hypermedia",
"nodejs",
"node",
"rest-api",
"rfc",
"warning",
"warnings"
],
"author": "Alexander Zeitler <alexander.zeitler@pdmlab.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PDMLab/express-http-warning/issues"
},
"homepage": "https://github.com/PDMLab/express-http-warning#readme",
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@types/express": "^4.17.8",
"@types/jest": "26.0.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.2",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "7.9.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-prettier": "3.1.4",
"express": "^4.17.1",
"http-problem-details": "^0.1.5",
"husky": "4.3.0",
"mocha": "^8.1.3",
"node-fetch": "^2.6.1",
"prettier": "2.1.2",
"should": "13.2.3",
"standard-version": "9.0.0",
"ts-mocha": "7.0.0",
"ts-node": "9.0.0",
"typescript": "4.0.3"
},
"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
},
"dependencies": {
"express-mung": "^0.5.1"
}
}