-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
47 lines (47 loc) · 938 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": "vinyl-ftp",
"version": "0.6.1",
"description": "Vinyl adapter for FTP",
"license": "MIT",
"repository": "morris/vinyl-ftp",
"author": {
"name": "Morris Brodersen",
"email": "[email protected]",
"url": "http://morrisbrodersen.de"
},
"files": [
"index.js",
"lib",
"index.d.ts"
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha test"
},
"keywords": [
"vinyl",
"gulp",
"ftp",
"deploy",
"deployment",
"upload"
],
"dependencies": {
"ftp": "^0.3.8",
"minimatch": "^3.0.2",
"object-assign": "^4.1.1",
"parallel-transform": "^1.1.0",
"through2": "^2.0.3",
"vinyl": "^2.0.1"
},
"devDependencies": {
"@types/vinyl-fs": "^2.4.5",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"rmdir": "^1.2.0",
"vinyl-fs": "^2.4.4"
},
"types": "./index.d.ts"
}