This repository was archived by the owner on Jul 9, 2024. It is now read-only.
forked from twolfson/grunt-curl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.56 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.56 KB
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.21",
"request": "^2.88.2"
},
"_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": "~4.18.2",
"foundry": "^4.7.0",
"foundry-release-git": "^2.1.2",
"foundry-release-npm": "^2.1.1",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.1",
"mocha": "~10.2.0",
"shell-quote": "~1.7.3"
},
"keywords": [
"gruntplugin",
"grunt",
"curl",
"download",
"request",
"file",
"url",
"uri"
],
"foundry": {
"releaseCommands": [
"foundry-release-git",
"foundry-release-npm"
]
}
}