forked from leodido/postcss-clean
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.31 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
79
80
81
82
83
84
85
86
87
{
"name": "@chariz/postcss-clean",
"version": "1.2.3",
"description": "PostCSS plugin to minify CSS with clean-css",
"author": {
"name": "Leo Di Donato",
"email": "leodidonato@gmail.com",
"url": "http://git.io/leodido"
},
"engines": {
"node": ">=8.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chariz/postcss-clean.git"
},
"bugs": {
"url": "https://github.com/chariz/postcss-clean/issues"
},
"homepage": "https://github.com/chariz/postcss-clean",
"main": "index.js",
"module": "index.m.js",
"types": "index.d.ts",
"dependencies": {
"clean-css": "^5.x",
"postcss": "^8.x"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.3",
"@rollup/plugin-buble": "^0.21.3",
"ava": "^3.15.0",
"buble": "^0.20.0",
"conventional-changelog-cli": "^2.1",
"coveralls": "^3.1",
"eslint": "^8.3.0",
"eslint-config-defaults": "^9.0",
"nyc": "^15.1",
"rollup": "^2.60.1"
},
"scripts": {
"clean": "rm -f $npm_package_main *.log && rm -rf coverage .nyc_output",
"lint": "eslint $npm_package_jsnext:main test.js rollup.config.js",
"develop": "BUILD_ENV=dev rollup -c rollup.config.js",
"distrib": "rollup -c rollup.config.js",
"pretest": "npm run lint && npm run develop",
"test": "nyc ava --verbose --serial",
"coverage": "nyc report --cache --reporter=text-summary --reporter=lcov",
"report": "nyc report --reporter=html",
"prepublish": "npm run distrib",
"changelog": "conventional-changelog -p eslint -i CHANGELOG.md -s",
"changelog:edit": "$(git var GIT_EDITOR) CHANGELOG.md",
"preversion": "npm run distrib",
"version": "npm run changelog && npm run changelog:edit && git add CHANGELOG.md",
"postversion": "git push && git push --tags"
},
"eslintConfig": {
"extends": "eslint-config-defaults",
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"globals": {
"Promise": true
},
"env": {
"es6": true
}
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"clean-css",
"cleancss",
"minifier",
"minify",
"minification",
"optimisation",
"optimization",
"optimise",
"optimize",
"compress",
"compression"
]
}