-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.92 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
{
"name": "rfc-7807-problem-details",
"version": "1.2.0",
"description": "Typescript implementation of rfc 7807",
"main": "index",
"scripts": {
"test": "jest --runInBand --detectOpenHandles --no-cache",
"test:majestic": "majestic",
"build:watch": "tsc --project tsconfig.json --watch",
"build": "tsc --project tsconfig.json",
"prebuild": "del-cli ./dist/",
"postbuild": "cpy 'README.md' 'package.json' 'package-lock.json' dist --no-overwrite",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/ezzabuzaid/rfc-7807-problem-details.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"author": "ezzabuzaid",
"license": "MIT",
"bugs": {
"url": "https://github.com/ezzabuzaid/rfc-7807-problem-details/issues"
},
"homepage": "https://github.com/ezzabuzaid/rfc-7807-problem-details",
"keywords": [
"rfc-7807",
"problem details",
"node.js problem-details",
"nodejs problem-details",
"rfc-7807-problem-details"
],
"private": false,
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"infile": "CHANGELOG.md"
}
},
"git": {
"requireBranch": "main",
"requireCleanWorkingDir": false,
"requireCommits": true,
"requireUpstream": true,
"tag": true
},
"github": {
"release": true
},
"npm": {
"publish": true,
"publishPath": "./dist"
},
"hooks": {
"after:bump": "npm run build",
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
}
},
"peerDependencies": {
"http-status-codes": "^2.2.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^4.1.0",
"@types/express": "^4.17.13",
"@types/node": "^17.0.31",
"cpy-cli": "^4.1.0",
"del-cli": "^4.0.1",
"express": "^4.18.1",
"http-errors": "^2.0.0",
"koa": "^2.13.4",
"release-it": "^14.12.1",
"typescript": "^4.9.4"
}
}