forked from dowjones/gulp-bundle-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 2.82 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "gulp-bundle-assets",
"version": "2.29.0",
"description": "Create asset (js, css) bundles from a config file leveraging the power of streams",
"main": "index.js",
"scripts": {
"test": "gulp ci",
"coveralls": "gulp test-cover && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"author": {
"name": "Chris Montgomery",
"url": "http://www.chrismontgomery.info/"
},
"contributors": [
{
"name": "Chris Montgomery",
"url": "http://www.chrismontgomery.info/"
},
{
"name": "Christian Sherland",
"url": "https://github.com/csherland"
},
{
"name": "Roberto Soares",
"url": "https://github.com/roberto"
},
{
"name": "bas",
"url": "https://github.com/21brains-zh"
},
{
"name": "gregorymaertens",
"url": "https://github.com/gregorymaertens"
},
{
"name": "narthollis",
"url": "https://github.com/narthollis"
},
{
"name": "PlasmaPower",
"url": "https://github.com/PlasmaPower"
},
{
"name": "jcarrivick-adapt",
"url": "https://github.com/jcarrivick-adapt"
}
],
"license": "MIT",
"keywords": [
"gulp",
"gulpfriendly",
"bundle",
"bundles",
"bundling",
"assets",
"asset",
"combine",
"compress",
"minify",
"minification",
"package",
"static",
"resource",
"javascript",
"css"
],
"repository": {
"type": "git",
"url": "https://github.com/dowjones/gulp-bundle-assets"
},
"bugs": {
"url": "https://github.com/dowjones/gulp-bundle-assets/issues"
},
"dependencies": {
"bluebird": "3.3.5",
"duplexer2": "0.0.2",
"graceful-fs": "4.1.4",
"gulp": "3.9.1",
"gulp-clean-css": "2.0.7",
"gulp-coffee": "2.3.2",
"gulp-concat": "2.5.2",
"gulp-if": "2.0.1",
"gulp-less": "3.1.0",
"gulp-order": "1.1.1",
"gulp-rev": "4.0.0",
"gulp-sourcemaps": "1.5.2",
"gulp-streamify": "0.0.5",
"gulp-uglify": "1.5.3",
"gulp-util": "3.0.7",
"lazypipe": "0.2.3",
"lodash": "3.9.3",
"map-stream": "0.0.6",
"merge-stream": "0.1.7",
"mkdirp": "0.5.1",
"pretty-hrtime": "1.0.2",
"readable-stream": "2.0.0",
"through2": "2.0.1",
"vinyl": "1.1.1"
},
"devDependencies": {
"browserify": "10.2.4",
"coveralls": "2.11.2",
"gulp-help": "1.6.0",
"gulp-istanbul": "0.10.0",
"gulp-istanbul-enforcer": "1.0.3",
"gulp-jshint": "1.11.0",
"gulp-mocha": "2.1.1",
"gulp-nice-package": "1.0.0",
"gulp-sass": "2.0.4",
"gulp-shrinkwrap": "2.0.1",
"jshint-stylish": "2.0.0",
"mocha-lcov-reporter": "0.0.2",
"multiline": "1.0.2",
"proxyquire": "1.5.0",
"rimraf": "^2.5.2",
"should": "6.0.3",
"sinon": "1.15.3",
"vinyl-source-stream": "1.1.0"
}
}