-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
61 lines (61 loc) · 1.38 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
{
"name": "stylelint-selector-bem-pattern",
"version": "4.0.1",
"description": "A stylelint plugin that harnesses the power of postcss-bem-linter",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"test": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --runInBand"
},
"exports": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/simonsmith/stylelint-selector-bem-pattern.git"
},
"engines": {
"node": ">=18.12.0"
},
"files": [
"index.js"
],
"keywords": [
"stylelint",
"stylelint-plugin",
"css",
"nesting",
"linter",
"bem"
],
"author": "David Clark",
"license": "MIT",
"bugs": {
"url": "https://github.com/simonsmith/stylelint-selector-bem-pattern/issues"
},
"homepage": "https://github.com/simonsmith/stylelint-selector-bem-pattern#readme",
"dependencies": {
"lodash": ">=4.17.21",
"postcss": "^8.4.24",
"postcss-bem-linter": "^4.0.1"
},
"devDependencies": {
"eslint": "^7.31.0",
"eslint-plugin-jest": "^27.2.2",
"jest": "^29.5.0",
"jest-preset-stylelint": "^7.0.0",
"stylelint": "^16.2.1"
},
"peerDependencies": {
"stylelint": "^16.2.1"
},
"jest": {
"preset": "jest-preset-stylelint",
"testMatch": [
"**/test/*.js"
]
},
"volta": {
"node": "20.10.0",
"yarn": "1.22.19"
}
}