-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
51 lines (51 loc) · 971 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
48
49
50
51
{
"name": "grunt-ftp",
"version": "2.1.0",
"description": "Upload files to or download from an FTP-server",
"license": "MIT",
"repository": "sindresorhus/grunt-ftp",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "xo && grunt"
},
"files": [
"tasks"
],
"keywords": [
"gruntplugin",
"ftp",
"jsftp",
"file",
"transfer",
"protocol",
"server",
"client",
"upload",
"deploy",
"deployment"
],
"dependencies": {
"chalk": "^1.0.0",
"each-async": "^1.0.0",
"jsftp": "^1.3.0",
"jsftp-mkdirp": "^1.0.0"
},
"devDependencies": {
"ftp-test-server": "0.0.2",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-simple-mocha": "^0.4.0",
"xo": "*"
},
"peerDependencies": {
"grunt": ">=0.4.0"
}
}