-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "@jetbrains/stylelint-config",
"version": "4.0.2",
"description": "A stylelint config by JetBrains",
"repository": {
"type": "git",
"url": "git+https://github.com/JetBrains/stylelint-config-jetbrains.git"
},
"main": "index.js",
"files": [
"index.js",
"properties-order.json"
],
"keywords": [
"stylelint",
"stylelint-config",
"jetbrains"
],
"author": "Andrey Skladchikov <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/JetBrains/stylelint-config-jetbrains/issues"
},
"homepage": "https://github.com/JetBrains/stylelint-config-jetbrains#readme",
"dependencies": {
"stylelint-config-css-modules": "^4.2.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.2"
},
"devDependencies": {
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"standard-version": "^9.5.0",
"stylelint": "^15.1.0"
},
"peerDependencies": {
"stylelint": ">=15.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"scripts": {
"commit": "git-cz",
"release:ci": "standard-version && git push --follow-tags origin master && npm publish"
}
}