-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
77 lines (77 loc) · 1.72 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
74
75
76
77
{
"name": "stylelint-use-logical-spec",
"version": "5.0.1",
"description": "Enforce usage of logical properties and values in CSS",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "https://github.com/Jordan-Hall/stylelint-use-logical-spec"
},
"homepage": "https://github.com/Jordan-Hall/stylelint-use-logical-spec#readme",
"bugs": "https://github.com/Jordan-Hall/stylelint-use-logical-spec/issues",
"main": "index.cjs.js",
"module": "index.es.mjs",
"files": [
"index.cjs.js",
"index.cjs.js.map",
"index.es.mjs",
"index.es.mjs.map"
],
"scripts": {
"prepublishOnly": "npm test",
"pretest": "rollup -c .rollup.js --silent",
"test": "npm run test:js && npm run test:tape",
"test:js": "eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet",
"test:tape": "stylelint-tape"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.13.0",
"eslint-config-dev": "^2.0.0",
"pre-commit": "^1.2.2",
"rollup": "^2.33.1",
"stylelint": "^13.7.2",
"stylelint-tape": "^2.0.0"
},
"peerDependencies": {
"stylelint": ">=11 < 17"
},
"eslintConfig": {
"extends": "dev",
"parser": "babel-eslint"
},
"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"
]
}