-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.16 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
{
"name": "imgcache",
"version": "0.3.3",
"description": "Simple Image Resolving and Caching Tool",
"main": "lib/imgcache.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"mkdirp": "^0.5.1",
"request": "^2.69.0"
},
"devDependencies": {
"coffee-script": ">= 1.10.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-coffee": "^1.0.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-exec": "^1.0.1",
"nodeunit": "^0.10.2",
"pre-commit": "^1.1.2",
"should": "^11.1.2"
},
"scripts": {
"test": "nodeunit test/*.coffee",
"jshint": "jshint -c .jshintrc lib"
},
"pre-commit": [
"test",
"jshint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wheller/imgcache.git"
},
"keywords": [
"image",
"url",
"resolver",
"cache",
"download"
],
"author": "Bill Heller <npm@phirephly.com> (http://phirephly.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/wheller/imgcache/issues"
},
"homepage": "https://github.com/wheller/imgcache#readme"
}