forked from leonidas/gulp-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.01 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
{
"name": "gulp-template",
"version": "0.0.0",
"description": "Project template for gulp.js",
"main": "gulpfile.js",
"scripts": {
"prepublish": "bower install",
"start": "gulp",
"build": "gulp build"
},
"keywords": [
"gulp",
"template"
],
"author": "",
"dependencies": {
"coffee-script": "~1.7.1"
},
"devDependencies": {
"gulp-rename": "~1.2.0",
"gulp-uglify": "~0.1.0",
"gulp-util": "~2.2.17",
"gulp-stylus": "1.0.2",
"gulp-jade": "~0.6.0",
"gulp-livereload": "~2.1.0",
"bower": "~1.3.5",
"browserify-shim": "~3.6.0",
"gulp-plumber": "~0.6.3",
"gulp-autoprefixer": "0.0.7",
"browserify": "~4.1.11",
"gulp-streamify": "0.0.5",
"vinyl-source-stream": "~0.1.1",
"coffeeify": "~0.6.0",
"gulp": "~3.8.1",
"watchify": "~0.10.2",
"ecstatic": "~0.5.3",
"gulp-minify-css": "~0.3.5"
},
"browser": {},
"browserify-shim": {},
"browserify": {
"transform": [
"coffeeify",
"browserify-shim"
]
}
}