forked from lix-project/lix-website
54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"author": "Mohammad Younes",
|
|
"name": "rtlcss",
|
|
"version": "3.5.0",
|
|
"description": "Framework for transforming cascading style sheets (CSS) from left-to-right (LTR) to right-to-left (RTL)",
|
|
"homepage": "https://rtlcss.com/",
|
|
"bugs": {
|
|
"url": "https://github.com/MohammadYounes/rtlcss/issues"
|
|
},
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"rtl",
|
|
"css",
|
|
"ltr",
|
|
"rtlcss",
|
|
"framework",
|
|
"style",
|
|
"mirror",
|
|
"flip",
|
|
"convert",
|
|
"transform"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/MohammadYounes/rtlcss.git"
|
|
},
|
|
"bin": {
|
|
"rtlcss": "./bin/rtlcss.js"
|
|
},
|
|
"dependencies": {
|
|
"find-up": "^5.0.0",
|
|
"picocolors": "^1.0.0",
|
|
"postcss": "^8.3.11",
|
|
"strip-json-comments": "^3.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "^9.1.3",
|
|
"standard": "^16.0.4"
|
|
},
|
|
"scripts": {
|
|
"main": "node ./lib/rtlcss.js",
|
|
"lint": "standard",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"mocha": "mocha -R spec",
|
|
"mocha:special": "npm run mocha -- --fgrep \"# Special\"",
|
|
"test": "npm run lint && npm run main && npm run mocha"
|
|
},
|
|
"main": "./lib/rtlcss.js",
|
|
"files": [
|
|
"bin/*.js",
|
|
"lib/*.js"
|
|
]
|
|
}
|