forked from prettier/eslint-config-prettier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.6 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
{
"private": true,
"scripts": {
"doctoc": "doctoc README.md && replace \"\\[\\[([\\w/-]+)\\](?:([^\\[\\]]+)\\[([\\w/-]+)\\])?\\]\" \"[\\$1\\$2\\$3]\" README.md",
"prettier": "prettier --write .",
"test:lint": "eslint . && prettier --check .",
"test:lint-verify-fail": "eslint \"test-lint/*.{js,ts,vue}\" --config .eslintrc.base.js --format json",
"test:lint-rules": "eslint index.js --config test-config/.eslintrc.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": "npm run test:lint && npm run test:jest && npm run test:cli-sanity && npm run test:cli-sanity-warning && npm run build",
"build": "node scripts/build.js"
},
"devDependencies": {
"@babel/eslint-parser": "7.13.14",
"@babel/eslint-plugin": "7.13.16",
"@babel/plugin-syntax-flow": "7.12.13",
"@babel/plugin-syntax-jsx": "7.12.13",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"doctoc": "2.0.0",
"eslint": "7.25.0",
"eslint-config-google": "0.14.0",
"eslint-find-rules": "3.6.1",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-flowtype": "5.7.2",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-standard": "4.0.2",
"eslint-plugin-unicorn": "31.0.0",
"eslint-plugin-vue": "7.9.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"replace": "1.2.1",
"rimraf": "3.0.2",
"typescript": "4.2.4"
}
}