-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 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
{
"name": "gulp-concat-vendor",
"description": "Concatenates external libraries installed by Bower sorted by their dependencies",
"version": "0.0.2",
"homepage": "http://github.com/patrickpietens/gulp-concat-vendor",
"repository": {
"type": "git",
"url": "git://github.com/patrickpietens/gulp-concat-vendor.git"
},
"author": {
"name": "Patrick Pietens",
"email": "[email protected]",
"url": "http://patrickpietens.com/"
},
"main": "./index.js",
"keywords": [
"gulpplugin"
],
"dependencies": {
"gulp-util": "^2.2.5",
"gulp-util": "~2.2.14",
"gulp-concat": "~2.2.0",
"through2": "~0.4.1",
"toposort-class": "~0.3.1"
},
"devDependencies": {
},
"scripts": {
},
"engines": {
"node": ">= 0.10"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/patrickpietens/gulp-concat-vendor/raw/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/patrickpietens/gulp-concat-vendor/issues"
},
"readme": "## Information\n\n<table>\n<tr> \n<td>Package</td><td>gulp-concat-vendor</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Concatenates external libraries installed by Bower sorted by their dependencies</td>\n</tr>\n<tr>\n<td>Node Version</td>\n<td>>= 0.10</td>\n</tr>\n</table>\n\n## Usage\n\n```javascript\nvar concat-vendor = require('gulp-concat-vendor');\n\ngulp.task('scripts', function() {\n gulp.src('./vendor/*')\n .pipe(vendor('vendor.js'))\n .pipe(gulp.dest('./dist/')); \n});\n```\n\nThis will concat all external libraries installed by Bower. It will sort all files depending on their dependencies before concating. Libraries not installed with Bower (that is, when the bower.json file is not found) will be skipped.\n\n## LICENSE\n\n(MIT License)\n\nCopyright (c) 2014\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n",
"readmeFilename": "README.md"
}