-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
90 lines (90 loc) · 2.52 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "alloylint",
"version": "0.1.2",
"description": "apply eslint autofix but keep last author info in git blame",
"contributors": [
"sigmaliu <[email protected]>"
],
"main": "./dist/index.js",
"bin": {
"alloylint": "./dist/index.js"
},
"keywords": [
"alloy",
"alloyteam",
"front-end",
"javascript",
"typscript",
"eslint",
"eslint autofix",
"autofix",
"style",
"blame",
"history",
"fix"
],
"homepage": "https://github.com/AlloyTeam/AlloyLint",
"repository": {
"type": "git",
"url": "https://github.com/AlloyTeam/AlloyLint.git"
},
"bugs": {
"url": "https://github.com/AlloyTeam/AlloyLint/issues"
},
"scripts": {
"dist": "node ./script/dist.js",
"dev": "node ./script/dev.js",
"test": "node ./script/test.js",
"prepublishOnly": "npm run dist",
"demo:fix": "cross-env MODE=demo ts-node ./src 'demo/**/*{js,ts}'",
"demo:fixAuth": "ross-env MODE=demo ts-node ./src -a 'demo/**/*{js,ts}'",
"demo:fixVue": "cross-env MODE=demo TYPE=vue ts-node ./src 'demo/**/*.vue'",
"demo:fixVueAuth": "cross-env MODE=demo ts-node ./src -a 'demo/**/*.vue'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,script}/**/*.{js,ts}": [
"ts-node ./src",
"git add"
]
},
"author": "sigmaliu <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/eslint": "^6.1.3",
"@types/node": "^13.1.2",
"commander": "^4.0.1",
"globby": "^10.0.1",
"eslint": "^6.8.0",
"fs-extra": "^8.1.0"
},
"files": [
"dist/*",
"docs/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-config-alloy": "^3.5.0",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"ts-node": "^8.10.1",
"typescript": "^3.7.5"
},
"engines": {
"node": ">=0.10.0",
"npm": ">=1.2.10"
}
}