forked from kogakure/gulp-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.5 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
{
"name": "gulp-build",
"version": "0.0.1",
"description": "The build process of my website with Gulp.js",
"private": true,
"browser": {
"modernizr": "./app/_bower_components/modernizr/modernizr.js",
"jquery": "./app/_bower_components/jquery/dist/jquery.js"
},
"browserify-shim": {
"modernizr": "Modernizr",
"jquery": "$"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"browser-sync": "^2.9.11",
"browserify": "^11.2.0",
"browserify-shim": "^3.8.0",
"css-mqpacker": "^4.0.0",
"del": "^0.1.3",
"gulp": "^3.9.0",
"gulp-base64": "^0.1.2",
"gulp-changed": "^1.0.0",
"gulp-cssnano": "^2.0.0",
"gulp-filter": "^3.0.1",
"gulp-gzip": "^1.2.0",
"gulp-htmlmin": "^1.2.0",
"gulp-imagemin": "^2.3.0",
"gulp-jshint": "^1.8.5",
"gulp-notify": "^2.0.0",
"gulp-plumber": "^1.0.1",
"gulp-postcss": "^6.0.1",
"gulp-rev": "^2.0.1",
"gulp-rev-collector": "^0.1.1",
"gulp-rsync": "0.0.5",
"gulp-shell": "^0.5.0",
"gulp-size": "^2.0.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.0.1",
"gulp-util": "^3.0.6",
"gulp-webp": "^2.1.1",
"gulp.spritesmith": "^4.1.1",
"jshint-stylish": "^2.0.1",
"postcss-reporter": "^1.3.0",
"precss": "^1.2.3",
"pretty-hrtime": "^1.0.1",
"require-dir": "^0.3.0",
"run-sequence": "^1.1.4",
"stylelint": "^1.2.1",
"vinyl-source-stream": "^1.0.0",
"watchify": "^3.4.0"
}
}