-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "stylelint-config-semantic",
"description": "Semantic rules for your CSS",
"main": "index.js",
"files": [
"lib",
"index.js"
],
"keywords": [
"stylelint",
"config",
"semantic",
"postcss",
"sass",
"css"
],
"repository": {
"type": "git",
"url": "https://github.com/rodoabad/stylelint-config-semantic.git"
},
"author": "Rodo Abad <[email protected]> (https://github.com/rodoabad)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rodoabad/stylelint-config-semantic/issues"
},
"homepage": "https://github.com/rodoabad/stylelint-config-semantic#readme",
"config": {
"ghooks": {
"pre-commit": "npm run test",
"commit-msg": "validate-commit-msg"
}
},
"engines": {
"node": ">=4.x"
},
"devDependencies": {
"ghooks": "^1.2.1",
"semantic-release": "^4.3.5",
"stylelint": "^7.5.0",
"validate-commit-msg": "^2.6.1"
},
"peerDependencies": {
"stylelint": "7.5.x"
},
"scripts": {
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "stylelint --config ./.stylelintrc --syntax scss ./test/**/*.scss"
}
}