-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.08 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,
"name": "npm-eslint-plugin-mark",
"version": "0.1.0-canary.4",
"packageManager": "[email protected]",
"engines": {
"node": ">=20.18.0"
},
"workspaces": [
".",
"packages/*",
"tests/*",
"website"
],
"scripts": {
"prepare": "husky",
"publish-package": "npx lerna publish from-package --pre-dist-tag next --yes",
"coverage": "npx c8 --reporter=lcov npm run test",
"test": "npx lerna run test --ignore npm-eslint-plugin-mark",
"test:pkg:epm": "npm run test -w packages/eslint-plugin-mark",
"test:t:i": "npm run test -w tests/integration",
"build": "npx lerna run build --ignore npm-eslint-plugin-mark",
"build:pkg:epm": "npm run build -w packages/eslint-plugin-mark",
"build:website": "npm run build -w website",
"dev": "npm run dev:website",
"dev:website": "npm run dev -w website",
"start": "npm run start:website",
"start:website": "npm run start -w website",
"fix": "concurrently \"npm:fix:*\"",
"fix:eslint": "npx eslint --fix",
"fix:prettier": "npx prettier . --write --ignore-unknown",
"fix:markdownlint": "npx markdownlint **/*.md --fix",
"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": {
"@types/node": "^22.15.0",
"c8": "^10.1.3",
"concurrently": "^9.0.0",
"editorconfig-checker": "^6.0.1",
"eslint": "^9.25.1",
"eslint-config-bananass": "^0.1.0-canary.3",
"eslint-plugin-mark": "^0.1.0-canary.4",
"husky": "^9.1.5",
"lerna": "^8.2.2",
"lint-staged": "^15.5.1",
"markdownlint-cli": "^0.44.0",
"prettier": "^3.5.3",
"prettier-config-bananass": "^0.1.0-canary.3",
"shx": "^0.4.0",
"textlint": "^14.6.0",
"textlint-rule-allowed-uris": "^1.1.0",
"typescript": "^5.8.3"
},
"overrides": {
"@eslint/core": "^0.13.0"
}
}