-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.71 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.71 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
{
"name": "config",
"version": "1.0.0",
"description": "Personal configuration files and setup scripts",
"private": true,
"engines": {
"node": "^22.14.0 || >= 24.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/keito4/config.git"
},
"scripts": {
"lint": "eslint . --ext .js",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"shellcheck": "find script -name '*.sh' -type f | grep -vFf script/.shellcheck-exclude | xargs -r shellcheck -x",
"test": "jest --runInBand",
"test:integration": "bats test/integration/",
"test:all": "npm test && npm run test:integration",
"test:watch": "jest --runInBand --watch",
"test:coverage": "jest --runInBand --coverage",
"update:libs": "bash script/update-libraries.sh",
"update:claude": "bash script/update-claude-code.sh",
"update:actions": "bash script/update-actions.sh",
"update:all": "bash script/update-all.sh",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^20.5.2",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/exec": "7.1.0",
"@semantic-release/github": "11.0.6",
"@semantic-release/release-notes-generator": "14.1.0",
"bats": "^1.13.0",
"conventional-changelog-conventionalcommits": "^9.3.1",
"eslint": "10.2.1",
"eslint-config-prettier": "10.1.8",
"globals": "17.5.0",
"husky": "9.1.7",
"jest": "30.3.0",
"jest-junit": "^17.0.0",
"prettier": "3.8.3",
"semantic-release": "25.0.3"
},
"overrides": {
"tar": "^7.5.11",
"handlebars": ">=4.7.9"
}
}