forked from QhlabTeam/qhlab-eslint-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.01 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.01 KB
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
71
72
73
74
75
76
77
78
79
80
{
"name": "@qhlab/eslint-plugin",
"main": "index.js",
"version": "1.11.0",
"publishConfig": {
"access": "public"
},
"files": [
"lib"
],
"description": "🧪 Eslint plugins for QhLab",
"keywords": [
"@qhlab",
"@qhlab/eslint-plugin",
"eslint",
"eslint-plugin",
"eslint-config",
"react",
"vue"
],
"author": {
"name": "QhlabTeam",
"url": "https://github.com/QhlabTeam"
},
"contributors": [
{
"name": "iamyoki",
"email": "yokiyuqian@gmail.com",
"url": "https://github.com/iamyoki"
}
],
"scripts": {
"prepare": "husky install",
"lint": "eslint .",
"test": "mocha tests --recursive",
"watch-test": "nodemon --exec 'yarn test'",
"semantic-release": "semantic-release"
},
"dependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"cosmiconfig": "^7.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-vue": "^8.0.3",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"requireindex": "^1.2.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"conventional-changelog-conventionalcommits": "^4.6.1",
"eslint": "^8.0.1",
"eslint-plugin-eslint-plugin": "^4.0.1",
"eslint-plugin-node": "^11.1.0",
"mocha": "^9.1.3",
"semantic-release": "^18.0.0"
},
"engines": {
"node": "12.x || 14.x || >= 16"
},
"peerDependencies": {
"eslint": ">=6"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/QhlabTeam/qhlab-eslint-plugin"
}
}