forked from vkalinichev/postcss-rtl
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.29 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
{
"name": "@mjhenkes/postcss-rtl",
"version": "2.0.0",
"description": "PostCSS plugin for RTL-optimizations",
"publishConfig": {
"access": "public"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"postcss plugin",
"rtl",
"ltr",
"right to left",
"left to right"
],
"author": "Vladimir Kalinichev <[email protected]>",
"license": "MIT",
"repository": "https://github.com/mjhenkes/postcss-rtl",
"bugs": {
"url": "https://github.com/mjhenkes/postcss-rtl/issues"
},
"homepage": "https://github.com/mjhenkes/postcss-rtl",
"main": "lib/index.js",
"files": [
"src",
"lib"
],
"dependencies": {
"rtlcss": "2.5.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"ava": "^2.4.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.20.1",
"postcss": "^8.0.0",
"postcss-import": "^13.0.0"
},
"scripts": {
"build": "babel ./src --out-dir ./lib",
"lint": "eslint ./src",
"prepare": "npm run lint && npm run build && npm test",
"start": "ava --watch ./src/test.js",
"test": "ava ./src/test.js"
},
"engines": {
"node": ">=0.12"
}
}