-
-
Notifications
You must be signed in to change notification settings - Fork 252
/
package.json
66 lines (66 loc) · 2.55 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
{
"name": "eslint-config-prettier",
"version": "9.1.0",
"license": "MIT",
"author": "Simon Lydell",
"description": "Turns off all rules that are unnecessary or might conflict with Prettier.",
"repository": "prettier/eslint-config-prettier",
"bin": "bin/cli.js",
"keywords": [
"eslint",
"eslintconfig",
"eslint-config",
"eslint-prettier",
"prettier"
],
"peerDependencies": {
"eslint": ">=7.0.0"
},
"scripts": {
"prettier": "prettier --write .",
"test:prettier": "prettier --check .",
"test:eslint": "eslint .",
"test:lint-verify-fail": "eslint \"test-lint/*.{js,ts,vue}\" --config .eslintrc.base.js --format json",
"test:lint-verify-fail:flat": "eslint \"test-lint/*.{js,ts,vue}\" --config eslint.base.config.js --format json",
"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:deprecated": "eslint-find-rules --deprecated index.js",
"test:jest": "jest",
"test:cli-sanity": "node ./bin/cli.js index.js",
"test:cli-sanity-warning": "node ./bin/cli.js react.js ./bin/cli.js",
"test:with-env": "npm run test:eslint && npm run test:jest && npm run test:cli-sanity && npm run test:cli-sanity-warning",
"test": "npm run test:prettier && ESLINT_CONFIG_PRETTIER_NO_DEPRECATED=true npm run test:with-env && ESLINT_USE_FLAT_CONFIG=false npm run test:with-env && npm run build",
"build": "node scripts/build.js",
"release": "npm run build && clean-pkg-json && changeset publish"
},
"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.1",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"clean-pkg-json": "^1.2.0",
"eslint": "8.55.0",
"eslint-config-google": "0.14.0",
"eslint-find-rules": "4.1.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",
"typescript": "5.3.2",
"vue-eslint-parser": "9.3.2"
},
"publishConfig": {
"directory": "build"
}
}