75 lines
1.7 KiB
JSON
75 lines
1.7 KiB
JSON
|
{
|
||
|
"name": "postcss-cli",
|
||
|
"version": "7.1.2",
|
||
|
"description": "CLI for PostCSS",
|
||
|
"main": "index.js",
|
||
|
"engines": {
|
||
|
"node": ">=10"
|
||
|
},
|
||
|
"bin": {
|
||
|
"postcss": "./bin/postcss"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"ci": "eslint . && nyc ava -v && npm run prettier -- --list-different",
|
||
|
"clean": "node test/helpers/clean.js",
|
||
|
"prettier": "prettier --single-quote --no-semi \"**/*.{js,md}\"",
|
||
|
"format": "npm run prettier -- --write && eslint . --fix",
|
||
|
"pretest": "npm run clean && npm run format",
|
||
|
"test": "nyc ava -v"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"chalk": "^4.0.0",
|
||
|
"chokidar": "^3.3.0",
|
||
|
"dependency-graph": "^0.9.0",
|
||
|
"fs-extra": "^9.0.0",
|
||
|
"get-stdin": "^8.0.0",
|
||
|
"globby": "^11.0.0",
|
||
|
"postcss": "^7.0.0",
|
||
|
"postcss-load-config": "^2.0.0",
|
||
|
"postcss-reporter": "^6.0.0",
|
||
|
"pretty-hrtime": "^1.0.3",
|
||
|
"read-cache": "^1.0.0",
|
||
|
"yargs": "^15.0.2"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"ava": "^3.1.0",
|
||
|
"coveralls": "^3.0.0",
|
||
|
"eslint": "^6.8.0",
|
||
|
"eslint-config-problems": "4.0.0",
|
||
|
"nyc": "^15.0.0",
|
||
|
"postcss-import": "^12.0.0",
|
||
|
"prettier": "~2.0.0",
|
||
|
"sugarss": "^2.0.0",
|
||
|
"uuid": "^8.0.0"
|
||
|
},
|
||
|
"files": [
|
||
|
"bin",
|
||
|
"index.js",
|
||
|
"lib"
|
||
|
],
|
||
|
"keywords": [
|
||
|
"cli",
|
||
|
"postcss",
|
||
|
"postcss-runner"
|
||
|
],
|
||
|
"contributors": [
|
||
|
{
|
||
|
"name": "Michael Ciniawky",
|
||
|
"email": "michael.ciniawsky@gmail.com"
|
||
|
},
|
||
|
{
|
||
|
"name": "Ryan Zimmermann",
|
||
|
"email": "opensrc@ryanzim.com"
|
||
|
}
|
||
|
],
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/postcss/postcss-cli.git"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/postcss/postcss-cli/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/postcss/postcss-cli#readme",
|
||
|
"license": "MIT"
|
||
|
}
|