-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 737 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 737 Bytes
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
{
"name": "gulp-cssnano",
"version": "1.0.0",
"description": "Minify CSS with cssnano.",
"main": "index.js",
"scripts": {
"test": "tape test.js | tap-spec"
},
"keywords": [
"minify",
"css",
"gulpplugin",
"postcss"
],
"license": "MIT",
"devDependencies": {
"gulp-sourcemaps": "^1.5.1",
"tap-spec": "^2.2.2",
"tape": "^3.5.0"
},
"homepage": "https://github.com/ben-eb/gulp-cssnano",
"author": {
"name": "Ben Briggs",
"email": "[email protected]",
"url": "http://beneb.info"
},
"repository": "ben-eb/gulp-cssnano",
"dependencies": {
"cssnano": "^1.0.0",
"gulp-util": "^3.0.1",
"object-assign": "^2.0.0",
"vinyl-sourcemaps-apply": "^0.1.4"
}
}