forked from paulcsmith/fingerprinter-brunch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "@nerevu/cachebust-brunch",
"version": "0.5.0",
"description": "Rename assets based on SHA1 hash for cache busting",
"main": "./lib/index",
"homepage": "https://github.com/nerevu/cachebust-brunch",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nerevu/cachebust-brunch.git"
},
"scripts": {
"test": "npm run mocha && npm run cover",
"mocha": "mocha --require coffeescript/register test/**/*.coffee",
"cover": "nyc report --reporter=text-lcov --reporter=text-summary",
"watch": "coffee -wo lib/ src/",
"prepublishOnly": "coffee -o lib/ src/"
},
"keywords": [
"brunch",
"cache",
"hash",
"fingerprint"
],
"author": "Reuben Cummings",
"license": "MIT",
"dependencies": {
"fs-extra": "^0.24.0",
"debug": "^3.1.0"
},
"devDependencies": {
"chai": "^3.3.0",
"coffee-coverage": "^3.0.0",
"coffeescript": "^2.4.1",
"mocha": "^8.4.0",
"nyc": "^15.0.0"
},
"bugs": {
"url": "https://github.com/nerevu/cachebust-brunch/issues"
},
"directories": {
"test": "test"
}
}