-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.49 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
{
"name": "@5app/health-check-helpers",
"version": "1.4.1",
"description": "System health check helpers",
"main": "index.js",
"type": "module",
"scripts": {
"prepare": "is-ci || husky install",
"lint": "eslint .",
"test": "npm run lint"
},
"files": [
"index.js",
"lib/",
"bin/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/5app/health-check-helpers.git"
},
"keywords": [
"health",
"helpers",
"check"
],
"author": "5app",
"license": "MIT",
"bugs": {
"url": "https://github.com/5app/health-check-helpers/issues"
},
"homepage": "https://github.com/5app/health-check-helpers#readme",
"devDependencies": {
"@5app/prettier-config": "^1.0.4",
"@5app/semantic-release-config": "^1.1.0",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"eslint": "^8.44.0",
"eslint-config-5app": "^0.19.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.7.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"pretty-quick": "^3.1.3",
"semantic-release": "^21.0.7"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case"
]
]
}
},
"release": {
"extends": "@5app/semantic-release-config"
},
"prettier": "@5app/prettier-config"
}