-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "@megalo/eslint-config-typescript",
"version": "1.0.0-alpha.1",
"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-typescript.git"
},
"bugs": {
"url": "https://github.com/megalojs/eslint-config-typescript/issues"
},
"homepage": "https://github.com/megalojs/eslint-config-typescript",
"keywords": [
"megalo",
"cli",
"eslint plugin",
"typescript"
],
"author": "bigMeow <[email protected]> (github.com/bigmeow)",
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^1.5.0",
"@typescript-eslint/parser": "^1.5.0",
"eslint-plugin-vue": "^5.0.0"
},
"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"
}
}