forked from sindresorhus/gulp-rev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 938 Bytes
/
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
{
"name": "gulp-rev",
"version": "0.4.1",
"description": "Static asset revisioning by appending content hash to filenames: unicorn.css => unicorn-098f6bcd.css",
"license": "MIT",
"repository": "sindresorhus/gulp-rev",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "http://sindresorhus.com"
},
"maintainers": [
{
"name": "Justin Hileman",
"email": "[email protected]",
"url": "http://justinhileman.info"
}
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"files": [
"index.js"
],
"keywords": [
"gulpplugin",
"rev",
"revision",
"hash",
"optimize",
"version",
"versioning",
"cache",
"expire",
"static",
"asset",
"assets"
],
"dependencies": {
"gulp-util": "~2.2.9",
"through2": "~0.5.1"
},
"devDependencies": {
"mocha": "*"
}
}