-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 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
{
"name": "@gcoguiec/commitlint-config",
"version": "1.0.10",
"description": "gcoguiec's commitlint config",
"author": "Guillaume 'Yugo' Coguiec <mail@gcoguiec.com> (https://github.com/gcoguiec/)",
"license": "BSD-2-Clause",
"main": "index.cjs",
"type": "module",
"files": [
"index.cjs"
],
"repository": {
"type": "git",
"url": "https://github.com/gcoguiec/commitlint-config.git"
},
"bugs": {
"url": "https://github.com/gcoguiec/commitlint-config/issues"
},
"homepage": "https://github.com/gcoguiec/commitlint-config",
"keywords": [
"commintlint-config"
],
"scripts": {
"fmt": "prettier --write \"./**/*.{js,cjs,json,md}\"",
"fmt:check": "prettier --list-different \"./**/*.{js,cjs,json,md}\"",
"lint": "eslint .",
"lint:fix": "pnpm lint --fix",
"lint:conflicts": "ESLINT_USE_FLAT_CONFIG=true npx eslint-config-prettier",
"precommit": "pnpm lint-staged",
"prepare": "husky || true",
"prepush": "pnpm fmt:check",
"pub": "pnpm publish --access public",
"spellcheck": "cspell --config=.cspell.json \"**/*.{md,js,cjs,mjs}\"",
"test": "vitest run"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/lint": "^19.4.1",
"@gcoguiec/eslint-config": "^1.1.3",
"cspell": "^8.14.2",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-x": "^4.2.1",
"eslint-plugin-perfectionist": "^3.4.0",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tslib": "^2.7.0",
"vitest": "^2.0.5"
},
"devEngines": {
"node": ">=22"
},
"volta": {
"node": "22.8.0",
"pnpm": "9.9.0"
},
"packageManager": "pnpm@9.9.0",
"pnpm": {
"overrides": {
"semver@<5.7.2": ">=5.7.2",
"semver@>=6.0.0 <6.3.1": ">=6.3.1",
"@babel/traverse@<7.23.2": ">=7.23.2"
}
}
}