forked from galkinrost/gulp-rev-css-url
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.01 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
{
"name": "gulp-rev-css-url",
"version": "0.1.0",
"description": "A lightweight plugin for gulp-rev to replace CSS url() calls with hashed URLs.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/galkinrost/gulp-rev-css-url"
},
"author": {
"name": "Galkin Rostislav",
"email": "galkinrost@gmail.com",
"url": "http://github.com/galkinrost"
},
"keywords": [
"gulpplugin",
"rev",
"revision",
"hash",
"optimize",
"version",
"versioning",
"cache",
"expire",
"static",
"asset",
"assets",
"gulp-rev"
],
"devDependencies": {
"chai": "^4.3.8",
"fs-extra": "^11.1.1",
"gulp": "^4.0.2",
"gulp-rev": "^9.0.0",
"jshint": "^2.13.6",
"mocha": "^10.2.0"
},
"dependencies": {
"gulp-util": "^3.0.8",
"through2": "^4.0.2"
},
"peerDependencies": {
"gulp": ">= 3 < 5",
"gulp-rev": ">= 5 < 10"
},
"scripts": {
"test": "mocha test.js -R list",
"lint": "jshint index.js test.js"
}
}