You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.4 KiB
59 lines
1.4 KiB
2 years ago
|
{
|
||
|
"name": "css-declaration-sorter",
|
||
|
"version": "6.3.0",
|
||
|
"description": "Sorts CSS declarations fast and automatically in a certain order.",
|
||
|
"type": "module",
|
||
|
"main": "./dist/main.cjs",
|
||
|
"exports": {
|
||
|
"import": "./src/main.mjs",
|
||
|
"require": "./dist/main.cjs"
|
||
|
},
|
||
|
"types": "./src/main.d.ts",
|
||
|
"files": [
|
||
|
"src/main.mjs",
|
||
|
"src/main.d.ts",
|
||
|
"src/shorthand-data.mjs",
|
||
|
"orders",
|
||
|
"dist"
|
||
|
],
|
||
|
"scripts": {
|
||
|
"build": "rollup -c",
|
||
|
"preversion": "npm test",
|
||
|
"test": "uvu src .+\\.test\\.mjs",
|
||
|
"test:ci": "npm test && npm run lint -- --max-warnings 0",
|
||
|
"lint": "eslint src/*.mjs",
|
||
|
"scrape": "node src/property-scraper.mjs",
|
||
|
"prepack": "npm run build"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@mdn/browser-compat-data": "^4.2.1",
|
||
|
"@rollup/plugin-dynamic-import-vars": "^1.4.2",
|
||
|
"@rollup/plugin-replace": "^4.0.0",
|
||
|
"eslint": "^8.12.0",
|
||
|
"postcss": "^8.4.12",
|
||
|
"rollup": "^2.70.1",
|
||
|
"uvu": "^0.5.3"
|
||
|
},
|
||
|
"peerDependencies": {
|
||
|
"postcss": "^8.0.9"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": "^10 || ^12 || >=14"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/Siilwyn/css-declaration-sorter.git"
|
||
|
},
|
||
|
"author": "Selwyn <talk@selwyn.cc> (https://selwyn.cc/)",
|
||
|
"license": "ISC",
|
||
|
"keywords": [
|
||
|
"postcss",
|
||
|
"postcss-plugin",
|
||
|
"css",
|
||
|
"declaration",
|
||
|
"sorter",
|
||
|
"property",
|
||
|
"order"
|
||
|
]
|
||
|
}
|