-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
50
{
"name": "stylelint-config-material",
"version": "1.0.5",
"description": "Shareable stylelint config for Material Design Components.",
"keywords": [
"material",
"material-design",
"material-components",
"mdc-web",
"stylelint",
"stylelint-config"
],
"homepage": "https://github.com/webdenim/stylelint-config-material",
"bugs": {
"url": "https://github.com/webdenim/stylelint-config-material/issues"
},
"license": "MIT",
"author": "Webdenim",
"main": "index.js",
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/webdenim/stylelint-config-material.git"
},
"scripts": {
"lint": "stylelint __tests__/*.scss --config index.js",
"release": "standard-version --tag-prefix",
"test": "jest"
},
"dependencies": {
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.14.2",
"stylelint-selector-bem-pattern": "^2.1.0"
},
"devDependencies": {
"jest": "^25.1.0",
"jest-preset-stylelint": "^1.3.0",
"standard-version": "^7.1.0",
"stylelint": "^13.1.0"
},
"peerDependencies": {
"stylelint": ">=10.1.0"
},
"jest": {
"preset": "jest-preset-stylelint"
}
}