-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2 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
{
"name": "@fengyinchao/eslint-plugin-custom",
"version": "0.0.8",
"description": "eslint-plugin-custom",
"main": "lib/src/index.js",
"scripts": {
"start": "ts-node-dev src/index.ts",
"build": "tsc -p tsconfig.json",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint",
"prettier --write"
],
"*.{css,scss}": [
"stylelint",
"prettier --write"
],
"*.html": [
"prettier --write"
]
},
"dependencies": {
"requireindex": "1.2.0",
"tslib": "2.0.2"
},
"devDependencies": {
"@commitlint/cli": "9.1.2",
"@types/node": "12.12.62",
"@typescript-eslint/eslint-plugin": "4.4.0",
"@typescript-eslint/parser": "4.4.0",
"commitizen": "4.2.1",
"commitlint-config-cz": "0.13.2",
"concurrently": "5.3.0",
"cross-env": "7.0.2",
"cz-customizable": "6.3.0",
"eslint": "7.10.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.3.0",
"lint-staged": "10.4.0",
"prettier": "2.1.2",
"standard-version": "9.0.0",
"stylelint": "13.7.1",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-standard": "20.0.0",
"ts-node-dev": "1.0.0-pre.63",
"typescript": "4.0.3",
"wait-on": "5.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fengyinchao/eslint-plugin-custom.git"
},
"keywords": [
"standard",
"typescript",
"eslint",
"styleint",
"prettier",
"editorconfig"
],
"author": "fengyinchao",
"license": "MIT",
"bugs": {
"url": "https://github.com/fengyinchao/eslint-plugin-custom/issues"
},
"files": [
"lib"
],
"homepage": "https://github.com/fengyinchao/eslint-plugin-custom#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}