-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.88 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
{
"name": "@untile/commitlint-config-untile",
"version": "1.0.0",
"description": "Untile-flavored commitlint config",
"keywords": [
"config",
"commit",
"commitlint",
"lint"
],
"homepage": "https://github.com/untile/commitlint-config-untile#readme",
"bugs": {
"url": "https://github.com/untile/commitlint-config-untile/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/untile/commitlint-config-untile.git"
},
"license": "MIT",
"author": "Untile",
"main": "src",
"scripts": {
"changelog": "echo \"$(github-changelog-generator --future-release=v$npm_package_version)\n$(tail -n +2 CHANGELOG.md)\" > CHANGELOG.md",
"lint": "eslint .",
"pre-commit": "lint-staged",
"prepare": "husky install",
"test": "jest",
"test-watch": "jest --watch --notify",
"version": "npm run changelog && git add -A CHANGELOG.md"
},
"husky": {
"hooks": {
"pre-commit": "yarn pre-commit",
"commit-msg": "yarn commitlint --edit $1"
}
},
"lint-staged": {
"**/*.js": [
"yarn lint"
],
"package.json": [
"sort-package-json"
]
},
"jest": {
"coverageDirectory": "coverage",
"coverageReporters": [
"html",
"lcov",
"text"
],
"testRegex": "(test/.*\\.test.js)$"
},
"dependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"commitlint-plugin-function-rules": "^1.6.0"
},
"devDependencies": {
"@commitlint/lint": "^16.2.1",
"@commitlint/load": "^16.2.3",
"@untile/eslint-config-untile": "^0.0.5",
"@uphold/github-changelog-generator": "^3.0.0",
"eslint": "^7.23.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"lint-staged": "^11.1.2",
"sort-package-json": "^1.49.0"
},
"peerDependencies": {
"@commitlint/cli": "^16.2.1"
},
"engines": {
"node": ">= 14.17.0"
}
}