-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.22 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
{
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=20.18.0"
},
"workspaces": [
"examples/*",
"packages/*",
"tests/*",
"website"
],
"scripts": {
"prepare": "husky",
"publish-package": "npx lerna publish from-package --pre-dist-tag canary --yes",
"test": "npx lerna run test --concurrency 1",
"coverage": "npx c8 --reporter=lcov npm run test",
"build": "npx lerna run build",
"build:pkg:cfg": "npm run build -w packages/clang-format-git",
"build:pkg:cfgp": "npm run build -w packages/clang-format-git-python",
"build:pkg:cfn": "npm run build -w packages/clang-format-node",
"build:website": "npm run build -w website",
"dev:pkg:cfg": "npm run dev -w packages/clang-format-git",
"dev:pkg:cfgp": "npm run dev -w packages/clang-format-git-python",
"dev:pkg:cfn": "npm run dev -w packages/clang-format-node",
"dev:website": "npm run dev -w website",
"start:pkg:cfg": "npm run start -w packages/clang-format-git",
"start:pkg:cfgp": "npm run start -w packages/clang-format-git-python",
"start:pkg:cfn": "npm run start -w packages/clang-format-node",
"start:website": "npm run start -w website",
"fix": "concurrently \"npm:fix:*\"",
"fix:eslint": "npx eslint --fix",
"fix:prettier": "npx prettier . --write",
"lint": "concurrently \"npm:lint:*\"",
"lint:eslint": "npx eslint",
"lint:prettier": "npx prettier . --check",
"lint:editorconfig": "npx editorconfig-checker -config .editorconfig-checker.json",
"lint:markdownlint": "npx markdownlint **/*.md",
"lint:textlint": "npx textlint -f pretty-error **/*.md"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@types/node": "^22.13.4",
"c8": "^10.1.3",
"concurrently": "^9.0.0",
"editorconfig-checker": "^6.0.0",
"eslint": "^9.20.1",
"eslint-config-bananass": "^0.0.5",
"husky": "^9.1.5",
"lerna": "^8.2.0",
"lint-staged": "^15.4.3",
"markdownlint-cli": "^0.44.0",
"prettier": "^3.5.1",
"prettier-config-bananass": "^0.0.1",
"shx": "^0.3.4",
"textlint": "^14.3.0",
"textlint-rule-allowed-uris": "^1.0.6",
"typescript": "^5.6.3"
}
}