-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.15 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-sri",
"description": "SRI integrety hash generator for gulp. Based on gulp-buster.",
"version": "0.3.1",
"author": {
"name": "Matthew Conlen",
"email": "[email protected]"
},
"main": "./index.js",
"keywords": [
"gulpplugin",
"sri",
"sri hash",
"cache",
"fingerprint",
"fingerprinting",
"revision",
"revisioning",
"workflow",
"webdev",
"web development"
],
"repository": {
"type": "git",
"url": "https://github.com/mathisonian/gulp-sri.git"
},
"dependencies": {
"bluebird": "^2.3.2",
"gulp-util": "^3.0.1",
"lodash.defaults": "^2.4.1",
"object-assign": "^1.0.0",
"sri-toolbox": "0.2.0",
"through": "^2.3.4"
},
"engines": {
"node": ">= 0.10"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mathisonian/gulp-sri/issues"
},
"devDependencies": {
"istanbul": "^0.3.2",
"mocha": "^2.0.0",
"should": "^4.0"
},
"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"
}
}