forked from furzeface/cachebust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.04 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
{
"name": "cachebust",
"version": "2.4.1",
"main": "lib/cachebust.js",
"description": "Append a query string to your assets to bust that cache!",
"homepage": "https://github.com/furzeface/cachebust",
"bugs": "https://waffle.io/furzeface/cachebust",
"author": {
"name": "Daniel Furze",
"email": "daniel@furzeface.com",
"url": "http://daniel.furzeface.com"
},
"repository": {
"type": "git",
"url": "https://github.com/furzeface/cachebust"
},
"license": "MIT",
"keywords": [
"cachebust",
"cache",
"HTML",
"JavaScript",
"CSS",
"Query string"
],
"dependencies": {
"md5": "^2.0.0",
"cheerio": "^0.22.0"
},
"devDependencies": {
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "~0.4.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-cli": "~1.10.0",
"jshint-stylish": "~1.0.0",
"load-grunt-tasks": "~1.0.0",
"time-grunt": "~1.0.0"
},
"scripts": {
"test": "grunt test"
},
"bin": {
"cachebust": "cli.js"
},
"preferGlobal": false
}