-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.37 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
{
"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 next --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": "npm run dev: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": "npm run start: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 --ignore-unknown",
"lint": "concurrently \"npm:lint:*\"",
"lint:eslint": "npx eslint",
"lint:prettier": "npx prettier . --check --ignore-unknown",
"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.27.0",
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@types/node": "^22.14.0",
"c8": "^10.1.3",
"concurrently": "^9.0.0",
"editorconfig-checker": "^6.0.0",
"eslint": "^9.24.0",
"eslint-config-bananass": "^0.0.7",
"eslint-plugin-mark": "^0.1.0-canary.1",
"husky": "^9.1.5",
"lerna": "^8.2.2",
"lint-staged": "^15.5.0",
"markdownlint-cli": "^0.44.0",
"prettier": "^3.5.3",
"prettier-config-bananass": "^0.0.1",
"shx": "^0.4.0",
"textlint": "^14.6.0",
"textlint-rule-allowed-uris": "^1.0.9",
"typescript": "^5.8.3"
}
}