-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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
{
"name": "eslint-plugin-pretty-imports",
"version": "1.3.0",
"description": "Eslint plugin to prettify import statements",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Dmitriy Kovalenko",
"main": "lib/src/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "yarn eslint ./src/**/*.ts",
"release": "yarn test && yarn build && yarn publish && git push && git push --tags",
"test:coverage": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/eslint": "7.29.0",
"@types/jest": "26.0.24",
"@types/node": "18.19.71",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"codecov": "3.8.3",
"eslint": "7.32.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-pretty-imports": "1.3.0",
"husky": "6.0.0",
"jest": "26.6.3",
"lint-staged": "9.5.0",
"prettier": "2.8.8",
"ts-jest": "26.5.6",
"typescript": "5.7.3"
},
"engines": {
"node": ">=0.10.0"
},
"license": "MIT"
}