-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 928 Bytes
/
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
{
"name": "prettier-plugin-shell",
"version": "1.0.3",
"description": "prettier解析shell",
"main": "src/index.js",
"scripts": {
"test": "eslint --ext .js src"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/zjwgank/prettier-plugin-shell.git"
},
"keywords": [
"prettier-plugin"
],
"author": "zjwgank",
"license": "MIT",
"bugs": {
"url": "https://github.com/zjwgank/prettier-plugin-shell/issues"
},
"homepage": "https://github.com/zjwgank/prettier-plugin-shell#readme",
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"bash-parser": "^0.5.0",
"eslint": "^6.1.0",
"husky": "^3.0.1",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2"
},
"dependencies": {}
}