-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "gulp-sri-hash",
"version": "2.2.1",
"description": "Gulp plugin for adding Sub-Resource-Integrity (SRI) hashes in-place to asset links found in HTML files.",
"bugs": {
"url": "https://github.com/macedigital/gulp-sri-hash/issues"
},
"homepage": "https://github.com/macedigital/gulp-sri-hash#readme",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"preversion": "git stash && npm test",
"postversion": "git push && git push --tags && git stash pop",
"test": "mocha",
"test-cov": "istanbul cover _mocha -- 2> /dev/null",
"test-travis": "istanbul cover _mocha --report lcovonly -- --reporter spec 2> /dev/null"
},
"keywords": [
"gulp",
"plugin",
"sri",
"sub-resource-integrity"
],
"files": [
"index.js",
"LICENSE",
"README.md"
],
"author": "Matthias Adler <macedigital@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/macedigital/gulp-sri-hash.git"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"plugin-error": "^1.0.1",
"through2": "^3.0.1"
},
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"gulp": "^4.0.2",
"istanbul": "^0.4.5",
"mocha": "^6.2.0",
"stream-assert": "^2.0.3"
},
"engines": {
"node": ">= 8.x",
"npm": ">= 6.x"
}
}