-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
73 lines (73 loc) · 1.47 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
67
68
69
70
71
72
73
{
"name": "stylelint-use-logical",
"version": "2.1.2",
"description": "Enforce usage of logical properties and values in CSS",
"license": "CC0-1.0",
"author": "Jonathan Neal <[email protected]>",
"repository": "csstools/stylelint-use-logical",
"homepage": "https://github.com/csstools/stylelint-use-logical#readme",
"bugs": "https://github.com/csstools/stylelint-use-logical/issues",
"main": "index.cjs",
"module": "index.mjs",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.cjs"
}
},
"files": [
"index.cjs",
"index.cjs.map",
"index.mjs",
"index.mjs.map"
],
"scripts": {
"build": "rollup -c .rollup.mjs --silent",
"prepublishOnly": "npm test",
"pretest": "npm run build",
"test": "stylelint-tape --cwd ./ --plugin index.mjs"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {},
"devDependencies": {
"rollup": "^4.0.0",
"stylelint": "^16.0.0",
"stylelint-tape": "^5.0.0"
},
"peerDependencies": {
"stylelint": ">= 11 < 17"
},
"eslintConfig": {
"extends": "dev"
},
"keywords": [
"stylelint",
"stylelint-plugin",
"css",
"logical",
"properties",
"property",
"flow",
"relative",
"values",
"value",
"ltr",
"rtl",
"directional",
"dir",
"inline",
"block",
"start",
"end",
"align",
"border",
"clear",
"float",
"margin",
"padding",
"size",
"text"
]
}