-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
52 lines (52 loc) · 1.2 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
{
"name": "gulp-buster",
"description": "Cache buster hashes generator for gulp. Blazing fast and fully configurable.",
"version": "1.1.0",
"author": {
"name": "Ult Combo",
"email": "[email protected]"
},
"main": "./index.js",
"keywords": [
"gulpplugin",
"cachebuster",
"cache buster",
"cache",
"fingerprint",
"fingerprinting",
"revision",
"revisioning",
"workflow",
"webdev",
"web development"
],
"repository": {
"type": "git",
"url": "https://github.com/UltCombo/gulp-buster.git"
},
"dependencies": {
"bluebird": "^3.3.5",
"gulp-util": "^3.0.7",
"lodash.defaults": "^4.0.1",
"object-assign": "^4.0.1",
"through": "^2.3.8"
},
"engines": {
"node": ">= 0.10"
},
"license": "WTFPL",
"bugs": {
"url": "https://github.com/UltCombo/gulp-buster/issues"
},
"homepage": "https://github.com/UltCombo/gulp-buster",
"devDependencies": {
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"should": "^8.3.1"
},
"scripts": {
"test": "mocha",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -R dot",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly"
}
}