-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.71 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "stylelint-config-wezom-relax-scss",
"version": "0.2.1-alpha",
"description": "shareable SCSS config for stylelint based on stylelint-config-recommended-scss and stylelint-config-wezom-relax",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "jest",
"stylelint-valid": "stylelint \"__tests__/**/valid.scss\" --config ./index.js",
"stylelint-invalid": "stylelint \"__tests__/**/invalid.scss\" --config ./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WezomAgency/stylelint-config-wezom-relax.git"
},
"keywords": [
"stylelint",
"config",
"Wezom"
],
"author": "Oleg Dutchenko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/WezomAgency/stylelint-config-wezom-relax/issues"
},
"homepage": "https://github.com/WezomAgency/stylelint-config-wezom-relax#readme",
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"printWidth": 90,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 4,
"useTabs": true
},
"jest": {
"cacheDirectory": "<rootDir>/.cache/jest",
"testMatch": [
"<rootDir>/__tests__/**/*.test.js"
],
"preset": "jest-preset-stylelint",
"coverageReporters": [
"json-summary",
"lcov"
]
},
"devDependencies": {
"chalk": "^3.0.0",
"from-cwd": "^1.0.1",
"glob": "^7.1.6",
"jest": "^24.9.0",
"jest-preset-stylelint": "^6.1.0",
"prettier": "^1.19.1",
"stylelint": "^13.0.0",
"stylelint-scss": "^3.16.0"
},
"dependencies": {
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-wezom-relax": "^0.2.0-alpha"
}
}