perfectionist-dfd
Version:
Beautify and/or normalize CSS files. Fork and update of a fork and update of an archived project.
95 lines (94 loc) • 2.68 kB
JSON
{
"name": "perfectionist-dfd",
"version": "3.0.3",
"description": "Beautify and/or normalize CSS files. Fork and update of a fork and update of an archived project.",
"type": "commonjs",
"main": "dist/perfectionist-dfd.min.js",
"bin": {
"perfectionist-dfd": "bin/cmd.js"
},
"files": [
"bin/",
"dist/",
"LICENSE",
"README.md"
],
"publishConfig": {
"tag": "devel"
},
"scripts": {
"precoverage": "npm run lint && del-cli out-test dist && cross-env NODE_ENV=test rollup -c",
"coverage": "cross-env NODE_ENV=test c8 ava ./__tests__/*.mjs",
"lint": "eslint src --ext .mjs --ext .js",
"production": "npm run test && del-cli dist && cross-env NODE_ENV=production rollup -c",
"preversion": "npm run production",
"prepublishOnly": "npm run production",
"report": "c8 report -o ./coverage --reporter=text >./coverage/text-report.txt && c8 report -o ./coverage --reporter=lcov",
"pretest": "npm run lint && del-cli out-test dist && cross-env NODE_ENV=test rollup -c",
"test": "cross-env NODE_ENV=test ava ./__tests__/*.mjs",
"test:ci": "npm run coverage",
"pretest:oldci": "del-cli out-test",
"test:oldci": "cross-env NODE_ENV=test ava ./__tests__/*.mjs"
},
"keywords": [
"beautify",
"css",
"format",
"normalize",
"postcss",
"postcss-plugin",
"pretty"
],
"license": "MIT",
"homepage": "https://github.com/danielfdickinson/perfectionist-dfd",
"author": "Daniel F. Dickinson <dfdpublic@wildtechgarden.ca> (https://www.wildtechgarden.ca/about/)",
"repository": "danielfdickinson/perfectionist-dfd",
"dependencies": {
"defined": "^1.0.0",
"minimist": "^1.2.6",
"postcss-scss": "^4.0.3",
"postcss-value-parser": "^4.2.0",
"read-file-stdin": "^0.2.1",
"semver": "^7.5.4",
"string.prototype.repeat": "^1.0.0",
"write-file-stdout": "^0.0.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"ava": "^4.1.0",
"c8": "^7.11.0",
"comment-regex": "^2.0.0",
"cpy-cli": "^4.1.0",
"cross-env": "^7.0.3",
"del-cli": "~4.0.1",
"eslint": "^8.12.0",
"eslint-plugin-ava": "^13.2.0",
"execa": "^6.1.0",
"rollup": "^2.70.1",
"rollup-plugin-terser": "^7.0.2",
"vendors": "^2.0.1"
},
"peerDependencies": {
"postcss": "^8.4.12"
},
"ava": {
"nodeArguments": [
"--trace-deprecation"
]
},
"c8": {
"all": true,
"exclude": [
"node_modules",
"__tests__/**",
"__tests-oldnode/**",
"dist/**",
"out-test"
],
"reporter": [
"lcov"
],
"src": "src"
}
}