-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1013 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
{
"name": "stylelint-at-include-disallowed-list",
"version": "0.1.0",
"description": "Stylelint rule for disallowing mixins to at-include",
"main": "index.js",
"author": "Wei Ting",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hoonweiting/stylelint-at-include-disallowed-list.git"
},
"bugs": {
"url": "https://github.com/hoonweiting/stylelint-at-include-disallowed-list/issues"
},
"homepage": "https://github.com/hoonweiting/stylelint-at-include-disallowed-list#readme",
"files": [
"index.js"
],
"keywords": [
"stylelint",
"stylelint-plugin",
"scss"
],
"scripts": {
"jest": "jest",
"lint": "npx eslint \"**/*.js\""
},
"peerDependencies": {
"stylelint": "^14.0.0 || ^15.0.0"
},
"devDependencies": {
"eslint": "^8.53.0",
"eslint-config-stylelint": "^20.0.0",
"eslint-plugin-jest": "^27.6.0",
"jest": "^29.7.0",
"jest-preset-stylelint": "^6.3.2",
"stylelint": "^15.11.0"
}
}