-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 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
{
"name": "stylelint-config-suitcss",
"version": "21.0.0",
"description": "SUIT CSS config for Stylelint",
"type": "module",
"keywords": [
"stylelint",
"stylelint-config",
"suitcss"
],
"author": "stylelint",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/suitcss/stylelint-config-suitcss.git"
},
"homepage": "https://github.com/suitcss/stylelint-config-suitcss",
"bugs": "https://github.com/suitcss/stylelint-config-suitcss/issues",
"exports": "./index.js",
"files": [
"index.js"
],
"engines": {
"node": ">=18.12.0"
},
"jest": {
"verbose": true
},
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"pretest": "npm run lint",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"eslintConfig": {
"extends": [
"stylelint",
"stylelint/jest"
]
},
"dependencies": {
"stylelint-order": "^6.0.4",
"stylelint-suitcss": "^5.0.0"
},
"peerDependencies": {
"stylelint": "^16.0.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-stylelint": "^21.0.0",
"eslint-plugin-jest": "^27.6.3",
"jest": "^29.7.0",
"stylelint": "^16.2.1"
}
}