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) · 791 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": {
"doctoc": "doctoc README.md",
"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": {
"@typescript-eslint/parser": "4.15.2",
"babel-eslint": "10.1.0",
"doctoc": "2.0.0",
"eslint": "7.21.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.5",
"eslint-plugin-markdown": "2.0.0",
"eslint-plugin-vue": "7.6.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"typescript": "4.2.2"
}
}