-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 923 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 923 Bytes
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
{
"name": "gulp-dir2module",
"description": "Creates a single browserify/commonjs module that includes all files in a directory.",
"version": "0.0.5",
"homepage": "https://github.com/mquinnv/gulp-dir2module",
"author": {
"name": "Michael Ventura",
"url": "http://white-leaf.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/mquinnv/gulp-dir2module.git"
},
"bugs": {
"url": "git://github.com/mquinnv/gulp-dir2module/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mquinnv/gulp-dir2module/blob/master/LICENSE-MIT"
}
],
"engines": {
"node": ">= 0.8.0"
},
"keywords": [
"gulpplugin",
"browserify",
"dir2module",
"gulp"
],
"main": "index.js",
"files": [
"index.js",
"LICENSE-MIT"
],
"dependencies": {
"plugin-error": "^1.0.1",
"through": "^2.3.4",
"vinyl": "^2.2.0"
}
}