-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 976 Bytes
/
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
{
"name": "stylelint-selector-tag-no-without-class",
"version": "2.0.5",
"description": "Styelint plugin to disallow certain tags without a qualifying classname in selectors",
"keywords": [
"stylelint-plugin",
"stylelint",
"css"
],
"type": "module",
"main": "index.js",
"exports": "./index.js",
"scripts": {
"test": "node --test index.test.js"
},
"author": {
"name": "Moxio",
"email": "info@moxio.com",
"url": "https://www.moxio.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Moxio/stylelint-selector-tag-no-without-class.git"
},
"license": "MIT",
"dependencies": {
"lodash": "^4.17.5",
"postcss-selector-parser": "^6.0.15"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^29.5.0",
"stylelint": "^16.2.1",
"stylelint-test-rule-node": "^0.2.1"
},
"peerDependencies": {
"stylelint": ">= 9.x < 17"
},
"engines": {
"node": ">=18.12.0"
}
}