forked from csstools/stylelint-use-logical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.74 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": "@ifsworld/stylelint-use-logical",
"version": "2.0.0",
"description": "Enforce usage of logical properties and values in CSS",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",
"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.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": "",
"test:js-old": "eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet",
"test:tape": "stylelint-tape"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-dev": "^2.0.0",
"pre-commit": "^1.2.2",
"rollup": "^1.11.3",
"rollup-plugin-babel": "^4.3.2",
"stylelint": "^10.0.1",
"stylelint-tape": "^1.0.2"
},
"peerDependencies": {
"stylelint": ">=10.0.1"
},
"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"
]
}