-
-
Notifications
You must be signed in to change notification settings - Fork 254
/
Copy pathpackage.json
99 lines (99 loc) · 3.28 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
{
"name": "eslint-config-prettier",
"version": "10.1.1",
"type": "commonjs",
"description": "Turns off all rules that are unnecessary or might conflict with Prettier.",
"repository": "prettier/eslint-config-prettier",
"author": "Simon Lydell",
"maintainers": [
"JounQin (https://www.1stG.me) <[email protected]>"
],
"license": "MIT",
"packageManager": "[email protected]",
"bin": "bin/cli.js",
"main": "index.js",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./flat": {
"types": "./flat.d.ts",
"default": "./flat.js"
},
"./prettier": {
"types": "./prettier.d.ts",
"default": "./prettier.js"
},
"./package.json": "./package.json"
},
"types": "index.d.ts",
"files": [
"bin",
"flat.d.ts",
"flat.js",
"index.d.ts",
"index.js",
"prettier.d.ts",
"prettier.js"
],
"keywords": [
"eslint",
"eslintconfig",
"eslint-config",
"eslint-prettier",
"prettier"
],
"scripts": {
"prettier": "prettier --write .",
"release": "clean-pkg-json && changeset publish",
"test": "yarn test:prettier && ESLINT_CONFIG_PRETTIER_NO_DEPRECATED=true yarn test:with-env && ESLINT_USE_FLAT_CONFIG=false yarn test:with-env",
"test:cli-sanity": "node ./bin/cli.js index.js",
"test:cli-sanity-warning": "node ./bin/cli.js react.js ./bin/cli.js",
"test:deprecated": "eslint-find-rules --deprecated index.js",
"test:eslint": "eslint .",
"test:jest": "jest",
"test:lint-rules": "eslint index.js --config test-config/.eslintrc.js --format json",
"test:lint-rules:flat": "eslint index.js --config test-config/eslint.config.js --format json",
"test:lint-verify-fail": "eslint \"test-lint/*.{js,jsx,ts,vue}\" --config .eslintrc.base.js --format json",
"test:lint-verify-fail:flat": "eslint \"test-lint/*.{js,jsx,ts,vue}\" --config eslint.base.config.js --format json",
"test:prettier": "prettier --check .",
"test:with-env": "yarn test:eslint && yarn test:jest && yarn test:cli-sanity && yarn test:cli-sanity-warning"
},
"peerDependencies": {
"eslint": ">=7.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.23.3",
"@babel/eslint-plugin": "7.23.5",
"@babel/plugin-syntax-flow": "7.23.3",
"@babel/plugin-syntax-jsx": "7.23.3",
"@babel/plugin-transform-react-jsx": "7.23.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@stylistic/eslint-plugin": "^2.3.0",
"@stylistic/eslint-plugin-js": "^2.3.0",
"@stylistic/eslint-plugin-jsx": "^2.3.0",
"@stylistic/eslint-plugin-plus": "^2.3.0",
"@stylistic/eslint-plugin-ts": "^2.3.0",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"clean-pkg-json": "^1.2.0",
"eslint": "8.57.1",
"eslint-config-google": "0.14.0",
"eslint-find-rules": "5.0.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-standard": "4.1.0",
"eslint-plugin-unicorn": "49.0.0",
"eslint-plugin-vue": "9.19.2",
"globals": "13.23.0",
"jest": "29.7.0",
"prettier": "3.1.0",
"prettier-plugin-pkg": "^0.18.1",
"typescript": "5.3.2",
"vue-eslint-parser": "9.3.2"
}
}