-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.64 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.64 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
{
"name": "@cto.af/generate-rules-table",
"version": "1.0.5",
"decription": "",
"main": "lib/index.js",
"bin": {
"generate-rules-table": "bin/generate-rules-table.js"
},
"type": "module",
"keywords": [
"eslint",
"documentation",
"eslint-doc-generator"
],
"author": "Joe Hildebrand <joe-github@cursive.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cto-af/generate-rules-table.git"
},
"homepage": "https://github.com/cto-af/generate-rules-table#readme",
"bugs": {
"url": "https://github.com/cto-af/generate-rules-table/issues"
},
"scripts": {
"clean": "rm -rf coverage docs lib",
"lint": "eslint .",
"pretest": "tsc --inlineSourceMap",
"test": "c8 node --test",
"posttest": "npm run ts",
"docs": "typedoc",
"ts": "tsc",
"version": "package-extract -so src/version.ts && git add src/version.ts",
"build": "npm run test && npm run lint && npm run docs && npm pack --dry-run"
},
"dependencies": {
"commander": "~14.0.3",
"eslint": "~10.1.0",
"mdast-util-from-markdown": "~2.0.3",
"package-up": "~5.0.0"
},
"devDependencies": {
"@cto.af/eslint-config": "^6.2.5",
"@eslint/markdown": "^7.5.1",
"@types/node": "^25.5.0",
"c8": "^11.0.0",
"eslint-plugin-jsdoc": "^62.8.0",
"package-extract": "^3.1.6",
"snappy-snaps": "^1.1.0",
"typedoc": "^0.28.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"overrides": {
"snappy-snaps@1.1.0>serialize-javascript": "~7.0.4"
}
},
"engines": {
"node": ">=20"
}
}