-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
78 lines (78 loc) · 1.79 KB
/
package.json
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": "11.0.0",
"description": "CLI for PostCSS",
"type": "module",
"engines": {
"node": ">=18"
},
"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": "^1.0.0",
"fs-extra": "^11.0.0",
"get-stdin": "^9.0.0",
"globby": "^14.0.0",
"picocolors": "^1.0.0",
"postcss-load-config": "^5.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": "^9.0.0",
"coveralls": "^3.0.0",
"eslint": "^8.55.0",
"eslint-config-problems": "8.0.0",
"postcss": "^8.0.4",
"postcss-import": "^16.0.0",
"prettier": "~3.4.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"
}