-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
111 lines (111 loc) · 3.1 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "eslint-doc-generator",
"version": "1.7.1",
"description": "Automatic documentation generator for ESLint plugins and rules.",
"keywords": [
"doc",
"docs",
"documentation",
"eslint",
"generator",
"plugin"
],
"homepage": "https://github.com/bmish/eslint-doc-generator#readme",
"bugs": {
"url": "https://github.com/bmish/eslint-doc-generator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmish/eslint-doc-generator.git"
},
"license": "ISC",
"author": "Bryan Mishkin",
"type": "module",
"types": "./dist/lib/index.d.ts",
"bin": {
"eslint-doc-generator": "./dist/bin/eslint-doc-generator.js"
},
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.build.json",
"lint": "npm-run-all --continue-on-error --aggregate-output --parallel \"lint:*\"",
"lint:docs": "markdownlint \"**/*.md\"",
"lint:docs:fix": "npm run lint:docs -- --fix",
"lint:js": "eslint --cache .",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:package-json": "npmPkgJsonLint .",
"lint:package-json-sorting": "sort-package-json --check",
"lint:package-json-sorting:fix": "sort-package-json package.json",
"lint:types": "tsc",
"prepublishOnly": "npm run build",
"release": "release-it",
"test": "node --max-old-space-size=4096 --experimental-vm-modules node_modules/jest/bin/jest.js --colors --coverage"
},
"dependencies": {
"@typescript-eslint/utils": "^5.38.1",
"ajv": "^8.11.2",
"boolean": "^3.2.0",
"commander": "^10.0.0",
"cosmiconfig": "^9.0.0",
"deepmerge": "^4.2.2",
"dot-prop": "^7.2.0",
"jest-diff": "^29.2.1",
"json-schema-traverse": "^1.0.0",
"markdown-table": "^3.0.3",
"no-case": "^3.0.4",
"type-fest": "^3.0.0"
},
"devDependencies": {
"@jest/globals": "^29.1.2",
"@release-it-plugins/lerna-changelog": "^7.0.0",
"@types/jest": "^29.1.0",
"@types/mock-fs": "^4.13.1",
"@types/node": "^20.1.4",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-n": "^17.11.1",
"eslint-plugin-unicorn": "^56.0.0",
"jest": "^29.1.1",
"markdownlint-cli": "^0.32.2",
"mock-fs": "^5.1.4",
"npm-package-json-lint": "^6.3.0",
"npm-run-all": "^4.1.5",
"outdent": "^0.8.0",
"release-it": "^17.10.0",
"sinon": "^19.0.2",
"sort-package-json": "^2.0.0",
"ts-jest": "^29.2.5",
"typescript": "^4.8.4"
},
"peerDependencies": {
"eslint": ">= 7"
},
"engines": {
"node": "^14.18.0 || ^16.0.0 || >=18.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}