-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) 路 2.8 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) 路 2.8 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
77
78
79
80
81
82
83
84
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@egohygiene/egolint-toolchain",
"version": "0.0.0",
"private": true,
"description": "Private Node.js toolchain for developing and validating Egolint policies.",
"keywords": [
"egolint",
"linting",
"developer-tools",
"quality"
],
"license": "MIT",
"author": {
"name": "Alan Szmyt",
"url": "https://egohygiene.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/egohygiene/egolint.git"
},
"bugs": {
"url": "https://github.com/egohygiene/egolint/issues"
},
"homepage": "https://github.com/egohygiene/egolint#readme",
"packageManager": "pnpm@11.21.0",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=11.0.0"
},
"type": "module",
"scripts": {
"architecture:test": "cargo test --locked javascript_architecture",
"commitlint": "commitlint --config .config/lint/commits/commitlint.emoji.config.cjs",
"commitlint:test": "node --test tests/commit-policy.test.cjs",
"eslint-config:test": "node --test tests/eslint-config.test.mjs",
"hooks:install": "husky .husky",
"javascript-quality:check": "node scripts/javascript-package-quality.mjs",
"javascript-quality:test": "node --test tests/javascript-package-quality.test.mjs",
"lint-staged": "lint-staged --cwd . --config .config/lint/commits/lint-staged.config.mjs",
"prepare": "pnpm run hooks:install"
},
"devDependencies": {
"@biomejs/biome": "2.5.9",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@commitlint/types": "^21.2.0",
"@cspell/cspell-json-reporter": "^10.0.1",
"@cspell/dict-clojure": "^2.0.9",
"@cspell/dict-elisp": "^1.1.2",
"@cspell/dict-gdscript": "^1.2.0",
"@cspell/dict-gis": "^1.0.3",
"@cspell/dict-medicalterms": "^4.1.8",
"@cspell/dict-mime-types": "^1.0.1",
"@cspell/dict-mnemonics": "^3.0.6",
"@cspell/dict-people-names": "^1.1.16",
"@cspell/dict-pokemon": "^1.0.3",
"@cspell/dict-redis": "^1.0.7",
"@cspell/dict-scientific-terms-us": "^3.1.0",
"@cspell/dict-vim": "^1.0.10",
"@cspell/dict-win32": "^2.0.10",
"@eslint/js": "^10.0.1",
"@eslint/json": "^2.0.1",
"@secretlint/secretlint-rule-preset-recommend": "^13.0.4",
"@typescript-eslint/eslint-plugin": "^8.66.0",
"@typescript-eslint/parser": "^8.66.0",
"cspell": "^10.0.1",
"dependency-cruiser": "18.2.0",
"eslint": "^9.39.5",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.9.0",
"husky": "^9.1.7",
"knip": "^6.32.1",
"lint-staged": "^17.3.0",
"oxlint": "1.79.0",
"oxlint-tsgolint": "7.0.2001",
"prettier": "^3.9.6",
"publint": "0.3.24",
"secretlint": "^13.0.4",
"stylelint": "^17.14.1",
"stylelint-config-standard": "^40.0.0",
"typescript": "^6.0.3"
}
}