-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "@vkontakte/stylelint-config",
"version": "4.1.0",
"description": "stylelint config from VK",
"type": "module",
"main": "index.js",
"exports": "./index.js",
"engines": {
"node": ">=20",
"yarn": "^1.21.1"
},
"scripts": {
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --runInBand",
"clear": "shx rm -rf dist/*",
"build": "yarn clear && tsc",
"lint:prettier": "prettier --check --ignore-unknown .",
"fix:prettier": "prettier --write --ignore-unknown ."
},
"author": "bumbledos@gmail.com",
"license": "MIT",
"devDependencies": {
"@swc/core": "^1.3.90",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.11",
"@types/micromatch": "^4.0.2",
"@types/node": "^22.0.0",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"jest-preset-stylelint": "^7.0.0",
"postcss": "^8.4.16",
"prettier": "^3.2.5",
"shx": "^0.3.4",
"stylelint": "^16.1.0",
"typescript": "^5.0.2"
},
"dependencies": {
"micromatch": "^4.0.5",
"postcss-value-parser": "^4.2.0"
},
"peerDependencies": {
"postcss": "^8.4.16",
"stylelint": "^15.11.0 || ^16.1.0"
}
}