-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.72 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
{
"name": "http-problem-details-parser",
"version": "0.0.2",
"description": "HTTP Problem Details parser for JavaScript/TypeScript clients",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts"
],
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts test/**/*.ts",
"test": "ts-mocha test/**/*.ts --exit",
"prepare": "husky install",
"prerelease": "yarn build",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PDMLab/http-problem-details-parser.git"
},
"keywords": [
"http-problem-details",
"http-problems",
"rfc7807",
"http",
"problem",
"errors"
],
"author": "Alexander Zeitler <alexander.zeitler@pdmlab.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/PDMLab/http-problem-details-parser/issues"
},
"homepage": "https://github.com/PDMLab/http-problem-details-parser#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/mocha": "^8.2.2",
"@types/node": "10",
"@types/standard-version": "^7.0.1",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-watch": "^7.0.0",
"husky": "^6.0.0",
"mocha": "^9.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"should": "^13.2.3",
"standard-version": "^9.3.1",
"ts-mocha": "^8.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"http-problem-details": "^0.1.5"
}
}