-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.17 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
{
"name": "hashly",
"version": "0.6.0",
"description": "Renames static files with a hashcode for cache busting",
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"image-size": "^0.5.0",
"md5": "^2.1.0",
"mime": "^1.2.11",
"minimatch": "~3.0.0",
"minimist": "1.2.0"
},
"devDependencies": {
"chai": "~3.5.0",
"grunt": "^1.0.1",
"grunt-contrib-jshint": "~1.0.0",
"grunt-jsbeautifier": "~0.2.7",
"grunt-lineending": "~0.2.2",
"grunt-mocha-test": "~0.12.7",
"mocha": "~2.4.5",
"rewire": "~2.5.1"
},
"main": "./lib/hashly",
"bin": {
"hashly": "./bin/hashly"
},
"repository": {
"type": "git",
"url": "git://github.com/labaneilers/hashly.git"
},
"bugs": {
"url": "https://github.com/labaneilers/hashly/issues"
},
"keywords": [
"javascript",
"cache busting",
"static files",
"deployment",
"hashcode",
"CDN"
],
"author": {
"name": "Laban Eilers",
"email": "[email protected]",
"url": "http://www.labaneilers.com"
},
"contributors": [
{
"name": "Laban Eilers"
}
],
"license": "Apache-2.0"
}