-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathpackage.json
74 lines (74 loc) · 1.71 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
{
"name": "postcss-cli",
"version": "6.1.2",
"description": "CLI for PostCSS",
"main": "index.js",
"engines": {
"node": ">=6"
},
"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": "^2.1.0",
"chokidar": "^2.0.0",
"dependency-graph": "^0.8.0",
"fs-extra": "^7.0.0",
"get-stdin": "^6.0.0",
"globby": "^10.0.1",
"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": "^12.0.1"
},
"devDependencies": {
"ava": "^1.0.1",
"coveralls": "^3.0.0",
"eslint": "^5.0.0",
"eslint-config-problems": "2.0.0",
"nyc": "^14.0.0",
"postcss-import": "^12.0.0",
"prettier": "~1.18.0",
"sugarss": "^2.0.0",
"uuid": "^3.0.1"
},
"files": [
"bin",
"index.js",
"lib"
],
"keywords": [
"cli",
"postcss",
"postcss-runner"
],
"contributors": [
{
"name": "Michael Ciniawky",
"email": "[email protected]"
},
{
"name": "Ryan Zimmermann",
"email": "[email protected]"
}
],
"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"
}