-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "@megalo/eslint-config-standard",
"version": "1.0.0",
"description": "eslint-config-standard for megalo project",
"main": "./lib/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --fix lib/**/*.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/megalojs/eslint-config-standard.git"
},
"bugs": {
"url": "https://github.com/megalojs/eslint-config-standard/issues"
},
"homepage": "https://github.com/megalojs/eslint-config-standard",
"keywords": [
"megalo",
"cli",
"eslint plugin",
"standard"
],
"author": "bigMeow <[email protected]> (github.com/bigmeow)",
"license": "MIT",
"dependencies": {
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.1"
},
"devDependencies": {
"eslint": "^5.13.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-vue": "^5.0.0",
"eslint-plugin-vue-libs": "^3.0.0",
"husky": "^1.3.1"
}
}