-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "@gamesdonequick/stylelint-config",
"version": "0.0.0-development",
"description": "GDQ's re-usable config for the Stylelint CSS linter.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GamesDoneQuick/stylelint-config.git"
},
"author": "Games Done Quick, LLC <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GamesDoneQuick/stylelint-config/issues"
},
"homepage": "https://github.com/GamesDoneQuick/stylelint-config#readme",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@gamesdonequick/prettier-config": "^2.1.1",
"husky": "^3.0.9",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"semantic-release": "^15.13.27"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
},
"publishConfig": {
"access": "public"
}
}