forked from MohammadYounes/rtlcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1006 Bytes
/
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
{
"author": "Mohammad Younes",
"name": "rtlcss",
"version": "2.5.0",
"description": "Framework for transforming cascading style sheets (CSS) from left-to-right (LTR) to right-to-left (RTL)",
"homepage": "http://rtlcss.com/",
"bugs": "https://github.com/MohammadYounes/rtlcss/issues?state=open",
"license": "MIT",
"keywords": [
"rtl",
"css",
"ltr",
"rtlcss",
"framework",
"style",
"mirror",
"flip",
"convert",
"transform"
],
"repository": {
"type": "git",
"url": "https://github.com/MohammadYounes/rtlcss.git"
},
"bin": {
"rtlcss": "./bin/rtlcss.js"
},
"dependencies": {
"chalk": "^2.4.2",
"findup": "^0.1.5",
"mkdirp": "^0.5.1",
"postcss": "^6.0.23",
"strip-json-comments": "^2.0.0"
},
"devDependencies": {
"mocha": "^5.0.0",
"standard": "^6.0.0"
},
"scripts": {
"lint": "standard && node ./lib/rtlcss.js",
"test": "npm run lint && mocha -R spec"
},
"main": "./lib/rtlcss.js"
}