forked from sindresorhus/gulp-tar
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 857 Bytes
/
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-tar",
"version": "1.5.0",
"description": "Create tarball from files",
"license": "MIT",
"repository": "sindresorhus/gulp-tar",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "http://sindresorhus.com"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"files": [
"index.js"
],
"keywords": [
"gulpplugin",
"tar",
"tarball",
"archive",
"archiver",
"compress",
"compression",
"file",
"files",
"stream",
"streams"
],
"dependencies": {
"archiver": "^0.15.1",
"gulp-util": "^3.0.0",
"object-assign": "^4.0.1",
"through2": "^2.0.0"
},
"devDependencies": {
"gulp": "*",
"gulp-gzip": "^1.2.0",
"mocha": "*",
"tar-stream": "^1.0.2",
"vinyl-map": "^1.0.1"
}
}