-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
51 lines (51 loc) · 1.08 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
{
"name": "clean-css-cli",
"version": "5.6.3",
"description": "A command-line interface to clean-css CSS optimization library",
"scripts": {
"check": "jshint ./bin/cleancss .",
"prepublish": "npm run check",
"test": "vows"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clean-css/clean-css-cli.git"
},
"keywords": [
"css",
"optimizer",
"minifier"
],
"bin": {
"cleancss": "./bin/cleancss"
},
"author": "Jakub Pawlowicz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/clean-css/clean-css-cli/issues"
},
"main": "index.js",
"files": [
"bin",
"History.md",
"index.js",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/clean-css/clean-css-cli#readme",
"dependencies": {
"chokidar": "^3.5.2",
"clean-css": "^5.3.3",
"commander": "7.x",
"glob": "^7.1.6"
},
"devDependencies": {
"http-proxy": "1.x",
"jshint": "^2.13.0",
"source-map": "0.5.x",
"vows": "^0.8.3"
},
"engines": {
"node": ">= 10.12.0"
}
}