-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 2.96 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "stylelint-config-plural",
"version": "0.0.13",
"description": "🎨 How plural paints its styles.",
"keywords": [
"stylelint",
"stylelint-config",
"standard",
"css",
"sass",
"scss",
"plural",
"plural.com"
],
"homepage": "https://github.com/pluralcom/stylelint-config-plural",
"bugs": {
"url": "https://github.com/pluralcom/stylelint-config-plural/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pluralcom/stylelint-config-plural"
},
"license": "MIT",
"author": {
"name": "Ahmed Tarek",
"email": "[email protected]",
"url": "https://github.com/a-tokyo"
},
"contributors": [
{
"name": "Ahmed Tarek",
"email": "[email protected]",
"url": "https://github.com/a-tokyo"
}
],
"main": "index.js",
"files": [
"index.js",
"rules"
],
"scripts": {
"format": "prettier . --write",
"prepare": "husky install",
"lint:formatting": "prettier . --check",
"lint:js": "eslint . --ignore-path .gitignore",
"lint:md": "remark . --quiet --frail --ignore-path .gitignore",
"lint:styles": "stylelint **/*.{css,scss}",
"lint": "npm-run-all --parallel lint:*",
"release": "np",
"pretest": "npm run lint",
"test": "jest",
"watch": "jest --watch"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,md,yml}": "prettier --write"
},
"prettier": "@stylelint/prettier-config",
"eslintConfig": {
"extends": [
"stylelint"
],
"rules": {
"func-name-matching": "off"
},
"globals": {
"expected": true,
"module": true,
"require": true
}
},
"remarkConfig": {
"plugins": [
"@stylelint/remark-preset"
]
},
"dependencies": {
"stylelint-8-point-grid": "^2.2.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-high-performance-animation": "^1.7.0",
"stylelint-images": "^2.0.1",
"stylelint-no-unresolved-module": "^2.0.0",
"stylelint-order": "^6.0.1",
"stylelint-rem-over-px": "^0.0.4"
},
"devDependencies": {
"@stylelint/prettier-config": "^2.0.0",
"@stylelint/remark-preset": "^4.0.0",
"eslint": "^8.29.0",
"eslint-config-stylelint": "^17.1.0",
"husky": "^8.0.2",
"jest": "^28.1.3",
"lint-staged": "^13.0.4",
"np": "^7.6.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"prettier": "^2.8.0",
"remark-cli": "^11.0.0",
"stylelint": "^14.16.1"
},
"peerDependencies": {
"postcss": ">=8",
"stylelint": ">=14",
"stylelint-8-point-grid": ">=2",
"stylelint-config-prettier": ">=9",
"stylelint-config-standard": ">=29",
"stylelint-config-standard-scss": ">=6",
"stylelint-high-performance-animation": ">=1",
"stylelint-images": ">=2",
"stylelint-no-unresolved-module": ">=2",
"stylelint-order": ">=6",
"stylelint-rem-over-px": ">=0"
}
}