forked from cssnano/cssnano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.69 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
88
89
90
91
92
93
94
95
96
{
"name": "cssnano",
"version": "3.5.2",
"description": "A modular minifier, built on top of the PostCSS ecosystem.",
"main": "dist/index.js",
"scripts": {
"pretest": "eslint src",
"prepublish": "del-cli dist && cross-env BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
"report": "nyc report --reporter=html",
"test": "nyc ava src/__tests__/*.js"
},
"keywords": [
"css",
"compress",
"minify",
"optimise",
"optimisation",
"postcss",
"postcss-plugin"
],
"license": "MIT",
"dependencies": {
"autoprefixer": "^6.3.1",
"decamelize": "^1.1.2",
"defined": "^1.0.0",
"indexes-of": "^1.0.1",
"object-assign": "^4.0.1",
"postcss": "^5.0.14",
"postcss-calc": "^5.2.0",
"postcss-colormin": "^2.1.8",
"postcss-convert-values": "^2.3.4",
"postcss-discard-comments": "^2.0.4",
"postcss-discard-duplicates": "^2.0.1",
"postcss-discard-empty": "^2.0.1",
"postcss-discard-unused": "^2.2.1",
"postcss-filter-plugins": "^2.0.0",
"postcss-merge-idents": "^2.1.5",
"postcss-merge-longhand": "^2.0.1",
"postcss-merge-rules": "^2.0.3",
"postcss-minify-font-values": "^1.0.2",
"postcss-minify-gradients": "^1.0.1",
"postcss-minify-params": "^1.0.4",
"postcss-minify-selectors": "^2.0.4",
"postcss-normalize-charset": "^1.1.0",
"postcss-normalize-url": "^3.0.7",
"postcss-ordered-values": "^2.1.0",
"postcss-reduce-idents": "^2.2.2",
"postcss-reduce-transforms": "^1.0.3",
"postcss-svgo": "^2.1.1",
"postcss-unique-selectors": "^2.0.2",
"postcss-value-parser": "^3.2.3",
"postcss-zindex": "^2.0.1"
},
"devDependencies": {
"ava": "^0.13.0",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-stage-0": "^6.5.0",
"coveralls": "^2.11.6",
"cross-env": "^1.0.7",
"css-frameworks": "git+https://[email protected]/ben-eb/css-frameworks.git",
"css-minifier-tests": "git+https://[email protected]/ben-eb/css-minifier-tests.git",
"del-cli": "^0.2.0",
"eslint": "^2.0.0",
"eslint-config-cssnano": "^2.0.0",
"hook-std": "^0.2.0",
"json-loader": "^0.5.4",
"ncp": "^2.0.0",
"nyc": "^6.0.0",
"webpack": "^1.12.13"
},
"homepage": "https://github.com/ben-eb/cssnano",
"author": {
"name": "Ben Briggs",
"email": "[email protected]",
"url": "http://beneb.info"
},
"repository": "ben-eb/cssnano",
"files": [
"dist",
"LICENSE-MIT"
],
"nyc": {
"exclude": [
"**/__tests__"
]
},
"ava": {
"require": "babel-core/register"
},
"eslintConfig": {
"extends": "cssnano"
}
}