forked from Robert-W/grunt-ftp-push
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
45
46
47
48
{
"name": "grunt-ftp-push",
"description": "Deploy your files to a FTP server.",
"version": "0.3.4",
"homepage": "http://robert-w.github.io/grunt-ftp-push",
"author": {
"name": "Robert Winterbottom",
"email": "Robbie.Winterbottom@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/Robert-W/grunt-ftp-push.git"
},
"bugs": {
"url": "https://github.com/Robert-W/grunt-ftp-push/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://robert-w.github.io/grunt-ftp-push/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "node_modules/jasmine-node/bin/jasmine-node test/ --verbose --color --forceexit",
"jsftp-test": "node_modules/jasmine-node/bin/jasmine-node test/jsftp/jsftpSpec.js --verbose --color"
},
"devDependencies": {
"grunt": "~0.4.1",
"jsftp": "~1.3.1"
},
"peerDependencies": {
"grunt": "~0.4.1"
},
"dependencies": {
"jasmine-node": "^1.14.5",
"jsftp": "^1.3.9",
"strip-json-comments": "^1.0.2"
},
"keywords": [
"gruntplugin",
"grunt-ftp-push",
"ftp"
]
}