summaryrefslogtreecommitdiff
path: root/node_modules/postcss-cli/package.json
blob: 1fc3037db0fef326979c4d4b77ac2d7d82b002f1 (plain) (blame)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
  "name": "postcss-cli",
  "version": "10.1.0",
  "description": "CLI for PostCSS",
  "type": "module",
  "engines": {
    "node": ">=14"
  },
  "bin": {
    "postcss": "./index.js"
  },
  "scripts": {
    "ci": "eslint . && c8 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": "c8 ava -v"
  },
  "dependencies": {
    "chokidar": "^3.3.0",
    "dependency-graph": "^0.11.0",
    "fs-extra": "^11.0.0",
    "get-stdin": "^9.0.0",
    "globby": "^13.0.0",
    "picocolors": "^1.0.0",
    "postcss-load-config": "^4.0.0",
    "postcss-reporter": "^7.0.0",
    "pretty-hrtime": "^1.0.3",
    "read-cache": "^1.0.0",
    "slash": "^5.0.0",
    "yargs": "^17.0.0"
  },
  "devDependencies": {
    "ava": "^3.1.0",
    "c8": "^7.9.0",
    "coveralls": "^3.0.0",
    "eslint": "^8.2.0",
    "eslint-config-problems": "7.0.1",
    "postcss": "^8.0.4",
    "postcss-import": "^15.0.0",
    "prettier": "~2.8.0",
    "sugarss": "^4.0.0",
    "uuid": "^9.0.0"
  },
  "peerDependencies": {
    "postcss": "^8.0.0"
  },
  "files": [
    "index.js",
    "lib",
    "!**/*.test.js"
  ],
  "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"
}