This repository has been archived by the owner on Oct 13, 2020. It is now read-only.
forked from sindresorhus/gulp-rev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.6 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "gulp-rev",
"version": "7.0.0",
"description": "Static asset revisioning by appending content hash to filenames: unicorn.css => unicorn-d41d8cd98f.css",
"license": "MIT",
"repository": "sindresorhus/gulp-rev",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "sindresorhus.com"
},
"maintainers": [
{
"name": "Justin Hileman",
"email": "[email protected]",
"url": "justinhileman.info"
},
{
"name": "Ben Bieler",
"email": "[email protected]",
"url": "https://twitter.com/BenBieler"
},
{
"name": "Tim Costa",
"url": "https://github.com/tjsail33"
},
{
"name": "Raja Sekar",
"email": "[email protected]",
"url": "https://github.com/rajzshkr"
},
{
"name": "Ajay Balachandran",
"url": "http://www.ajaybalachandran.com/"
}
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "xo && mocha"
},
"files": [
"index.js"
],
"keywords": [
"gulpplugin",
"rev",
"revving",
"revision",
"hash",
"optimize",
"version",
"versioning",
"cache",
"expire",
"static",
"asset",
"assets"
],
"dependencies": {
"gulp-util": "^3.0.0",
"modify-filename": "^1.1.0",
"object-assign": "^4.0.1",
"rev-hash": "^1.0.0",
"rev-path": "^1.0.0",
"sort-keys": "^1.0.0",
"through2": "^2.0.0",
"vinyl-file": "^1.1.0"
},
"devDependencies": {
"mocha": "*",
"xo": "*"
},
"xo": {
"envs": [
"node",
"mocha"
]
}
}