-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.61 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
67
68
69
70
{
"name": "@tgarif/eslint-config",
"version": "0.2.0",
"description": "Tgarif coding styles for Eslint",
"main": "index.js",
"files": [
"eslintrc/",
"index.js",
"fix.js",
"LICENSE",
"README.md"
],
"license": "MIT",
"scripts": {
"check": "prettier --check './**/*.js'",
"fix": "prettier --write './**/*.js'",
"precommit": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.js": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/tgarif/eslint-config"
},
"keywords": [
"tgarif",
"eslint",
"eslintrc"
],
"author": {
"name": "Tengku Arif",
"email": "[email protected]"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@tgarif/prettier-config": "^0.1.1",
"@types/eslint": "^7.2.6",
"husky": "^4.0.0",
"lint-staged": "^11.0.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-ban": "^1.5.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.8",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.0.1",
"prettier": "^2.5.1"
},
"peerDependencies": {
"typescript": ">= 3.0.0 < 5.0.0"
},
"publishConfig": {
"access": "public"
}
}