-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.64 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
62
63
64
65
66
{
"name": "stylelint-plugin-logical-css",
"version": "1.2.1",
"description": "A Stylelint plugin to enforce the use of logical CSS properties, values and units.",
"main": "src/index.js",
"type": "module",
"exports": "./src/index.js",
"files": [
"src/**/*.js",
"!**/**/*.test.js"
],
"scripts": {
"prepare": "husky install",
"jest": "cross-env NODE_OPTIONS=\"--experimental-vm-modules\" jest --runInBand",
"test": "npm run jest",
"test:watch": "npm run jest -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuschick/stylelint-plugin-logical-css.git"
},
"author": "Daniel Yuschick",
"license": "MIT",
"bugs": {
"url": "https://github.com/yuschick/stylelint-plugin-logical-css/issues"
},
"homepage": "https://github.com/yuschick/stylelint-plugin-logical-css#readme",
"engines": {
"node": ">=18.12.0"
},
"keywords": [
"css",
"csslint",
"internationalization",
"i18n",
"lint",
"linter",
"stylelint",
"stylelint-plugin",
"logical css"
],
"peerDependencies": {
"stylelint": "^14.0.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"cross-env": "^7.0.3",
"eslint": "^8.35.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-cli": "^29.4.3",
"jest-light-runner": "^0.6.0",
"jest-preset-stylelint": "^7.0.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"prettier-eslint": "^16.1.2",
"stylelint": "^16.1.0"
},
"lint-staged": {
"**/*.js|md|json": [
"eslint",
"prettier --write"
]
}
}