-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.64 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.64 KB
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": "@nlib/lint-commit",
"publishConfig": {
"access": "public"
},
"version": "1.0.1",
"license": "Apache-2.0",
"author": {
"name": "Kei Ito",
"email": "kei.itof@gmail.com",
"url": "https://gojabako.zone"
},
"homepage": "https://github.com/nlibjs/lint-commit",
"repository": "https://github.com/nlibjs/lint-commit",
"engines": {
"node": ">=14"
},
"type": "module",
"main": "./lib/cli.mjs",
"files": [
"lib",
"!**/*.test.*"
],
"bin": {
"lint-commit": "./lib/cli.mjs",
"nlib-lint-commit": "./lib/cli.mjs"
},
"scripts": {
"build": "tsc",
"test": "run-s build test:*",
"test:unit": "ava",
"lint": "eslint src",
"version": "nlib-changelog --output CHANGELOG.md && git add CHANGELOG.md"
},
"dependencies": {
"commander": "11.1.0",
"semver": "7.7.3"
},
"devDependencies": {
"@nlib/changelog": "0.3.2",
"@nlib/eslint-config": "3.20.5",
"@nlib/githooks": "0.2.2",
"@types/node": "20.12.2",
"@types/semver": "7.7.1",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"ava": "5.3.1",
"eslint": "8.57.1",
"lint-staged": "14.0.1",
"npm-run-all": "4.1.5",
"prettier": "3.7.4",
"typescript": "5.4.3"
},
"eslintConfig": {
"extends": [
"@nlib/eslint-config"
],
"env": {
"node": true
}
},
"ava": {
"files": [
"lib/**/*.test.*(m|c)+(j|t)s*(x)"
]
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"**/*.*(m|c)+(j|t)s*(x)": "eslint"
},
"renovate": {
"extends": [
"github>nlibjs/renovate-config"
]
}
}