-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1017 Bytes
/
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
{
"name": "@uphold/commitlint-config",
"version": "1.1.1",
"description": "Shareable commitlint config enforcing Uphold's commit conventions",
"author": "Uphold",
"main": "src/index.js",
"files": [
"src"
],
"license": "MIT",
"homepage": "https://github.com/uphold/commitlint-config-uphold",
"keywords": [
"commitlint",
"commit",
"lint"
],
"scripts": {
"changelog": "uphold-scripts changelog $npm_package_version",
"lint-staged": "lint-staged -q",
"lint": "uphold-scripts lint .",
"release": "uphold-scripts release",
"test": "uphold-scripts test",
"version": "uphold-scripts version",
"update-wordnet-verbs": "./bin/update-wordnet-verbs"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.{js,mjs}": [
"uphold-scripts lint"
]
},
"devDependencies": {
"@commitlint/lint": "^17.0.0",
"jest": "^26.6.3",
"uphold-scripts": "^0.7.1",
"wordnet": "^2.0.0"
},
"engines": {
"node": ">= 14.0.0"
}
}