forked from lydell/eslint-plugin-simple-import-sort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 856 Bytes
/
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
{
"private": true,
"type": "commonjs",
"scripts": {
"pretest": "prettier --check . && eslint . --report-unused-disable-directives",
"test": "jest --coverage",
"posttest": "npm run build",
"build": "node build.js",
"examples": "eslint --rulesdir src --no-ignore --fix-dry-run --format json --report-unused-disable-directives examples --ext .js,.ts,.vue,.md"
},
"devDependencies": {
"@babel/eslint-parser": "7.17.0",
"@babel/plugin-syntax-import-assertions": "7.16.7",
"@babel/plugin-transform-flow-strip-types": "7.16.7",
"@typescript-eslint/parser": "5.16.0",
"eslint": "8.12.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.1.3",
"eslint-plugin-markdown": "2.2.1",
"eslint-plugin-vue": "8.5.0",
"jest": "27.5.1",
"prettier": "2.6.1",
"typescript": "4.6.3"
}
}