-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "grunt-image-resize",
"description": "Resizing images made easy.",
"version": "1.0.0",
"homepage": "https://github.com/excellenteasy/grunt-image-resize",
"author": {
"name": "David Pfahler",
"email": "[email protected]",
"url": "http://excellenteasy.com"
},
"repository": {
"type": "git",
"url": "git://github.com/excellenteasy/grunt-image-resize"
},
"bugs": {
"url": "https://github.com/excellenteasy/grunt-image-resize/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/excellenteasy/grunt-image-resize/blob/master/LICENSE"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test",
"before-deploy": "grunt before-deploy",
"after-deploy": "grunt after-deploy"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-semantic-release": "^0.2.1",
"load-grunt-tasks": "^2.0.0"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"gruntplugin"
],
"dependencies": {
"async": "^0.9.0",
"gm": "^1.14.2"
}
}