-
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.25 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
{
"name": "generator-eslint",
"version": "6.1.0",
"description": "A Yeoman generator for creating ESLint plugins/rules",
"keywords": [
"eslint",
"yeoman-generator"
],
"homepage": "https://github.com/eslint/generator-eslint",
"funding": "https://opencollective.com/eslint",
"bugs": "https://github.com/eslint/generator-eslint/issues",
"author": {
"name": "ESLint",
"url": "https://github.com/eslint"
},
"type": "module",
"exports": "./app/index.js",
"files": [
"app",
"lib",
"plugin",
"rule"
],
"repository": "eslint/generator-eslint",
"scripts": {
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"lint": "npm run lint:docs && npm run lint:js",
"lint:docs": "markdownlint \"**/*.md\"",
"lint:js": "eslint",
"test": "mocha \"tests/**/*.test.js\""
},
"dependencies": {
"yeoman-generator": "^8.0.0"
},
"devDependencies": {
"eslint": "^10.0.0",
"eslint-config-eslint": "^14.0.0",
"globals": "^17.0.0",
"markdownlint-cli": "^0.48.0",
"mocha": "^11.0.0",
"prettier": "3.8.1",
"yeoman-test": "^11.3.1"
},
"peerDependencies": {
"yo": ">=4.0.0"
},
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"license": "MIT"
}