-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1 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
47
48
49
50
{
"name": "asset_hash",
"version": "0.2.2",
"description": "Small library to hash asset filenames and generate asset manifest",
"author": {
"name": "Maxwell Berkel",
"email": "maxwell@allbitsnbytes.com",
"url": "https://github.com/allbitsnbytes"
},
"repository": {
"type": "git",
"url": "https://github.com/allbitsnbytes/asset_hash"
},
"bugs": {
"url": "https://github.com/allbitsnbytes/asset_hash/issues"
},
"license": [
{
"type": "MIT",
"url": "https://github.com/allbitsnbytes/asset_hash/blob/LICENSE.md"
}
],
"engines": {
"node": ">= 0.10.25"
},
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --reporter spec"
},
"keywords": [
"asset",
"caching",
"hash",
"optimizer",
"rev",
"revving"
],
"devDependencies": {
"chai": "^2.2.0",
"mocha-jshint": "^2.1.1"
},
"dependencies": {
"glob": "^5.0.15",
"lodash": "^3.10.1",
"vinyl-file": "^1.3.0"
}
}