forked from aranja/gulp-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.46 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
{
"name": "gulp-base",
"version": "0.0.4",
"description": "A base for projects using Gulp",
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"plugin": {
"exports": "plugin",
"depends": [
"jquery:$"
]
}
},
"repository": {
"type": "git",
"url": "http://github.com/aranja/gulp-base.git"
},
"author": {
"name": "Aranja",
"email": "[email protected]",
"url": "http://aranja.com"
},
"bugs": {
"url": "https://github.com/aranja/gulp-base/issues"
},
"homepage": "https://github.com/aranja/gulp-base",
"license": "MIT",
"devDependencies": {
"browser-sync": "^2.6.4",
"browserify": "^9.0.3",
"browserify-shim": "^3.8.2",
"glob": "^5.0.1",
"gulp": "^3",
"gulp-autoprefixer": "^2.0.0",
"gulp-changed": "^1.1.0",
"gulp-connect": "^2.2.0",
"gulp-imagemin": "^2.1.0",
"gulp-jade": "^1.0.0",
"gulp-jscs": "^1.4.0",
"gulp-jshint": "^1.9.4",
"gulp-less": "^3.0.1",
"gulp-livereload": "^3.8.0",
"gulp-minify-css": "^1.0.0",
"gulp-notify": "^2.1.0",
"gulp-open": "^0.3.1",
"gulp-plumber": "^1.0.0",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.1.0",
"gulp-util": "^3.0.2",
"gulp-watch": "^4.1.1",
"jshint-stylish": "^1.0.1",
"rimraf": "^2.2.8",
"run-sequence": "^1.0.2",
"vinyl-transform": "^1.0.0"
},
"dependencies": {
"jquery": "^2.1.3",
"normalize.css": "^3.0.2"
}
}