-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "@supportclass/prettier-config",
"version": "0.0.0-development",
"description": "Support Class' re-usable config for the Prettier code formatter.",
"main": "prettier.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release"
},
"files": [
"prettier.config.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SupportClass/prettier-config.git"
},
"keywords": [
"prettier",
"config"
],
"author": "Support Class <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SupportClass/prettier-config/issues"
},
"homepage": "https://github.com/SupportClass/prettier-config#readme",
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"husky": "^1.3.1",
"prettier": "^1.17.0",
"pretty-quick": "^1.10.0",
"semantic-release": "^15.13.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
}
}