This repository has been archived by the owner on Dec 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
73 lines (73 loc) · 1.56 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "grunt-curl",
"description": "Download files from the internet via grunt.",
"version": "2.5.1",
"homepage": "https://github.com/twolfson/grunt-curl",
"author": {
"name": "Todd Wolfson",
"email": "todd@twolfson.com",
"url": "http://twolfson.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/twolfson/grunt-curl.git"
},
"bugs": {
"url": "https://github.com/twolfson/grunt-curl/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/twolfson/grunt-curl/blob/master/LICENSE-MIT"
}
],
"main": "grunt.js",
"bin": "bin/grunt-curl",
"engines": {
"node": ">= 4.0.0"
},
"scripts": {
"test": "rm -r test/actual 2> /dev/null; mocha"
},
"dependencies": {
"async": "~0.2.10",
"grunt-retro": "~0.7.0",
"lodash": "~4.17.11",
"request": "~2.83.0"
},
"_devDependencies": {
"grunt": "~0.3.17",
"doubleshot": "~2.13.1",
"chai": "~1.5.0",
"grunt-contrib-clean": "~0.3.2",
"express": "~3.4.4"
},
"devDependencies": {
"chai": "~1.9.0",
"express": "~3.21.2",
"foundry": "~4.3.3",
"foundry-release-git": "~2.0.2",
"foundry-release-npm": "~2.0.2",
"grunt": "~0.4.0",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "~0.5.0",
"mocha": "~1.18.2",
"shell-quote": "~1.6.1"
},
"keywords": [
"gruntplugin",
"grunt",
"curl",
"download",
"request",
"file",
"url",
"uri"
],
"foundry": {
"releaseCommands": [
"foundry-release-git",
"foundry-release-npm"
]
}
}