-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
58 lines (58 loc) · 1.3 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
{
"name": "gulp-useref",
"version": "5.0.0",
"description": "Parse build blocks in HTML files to replace references to non-optimized scripts or stylesheets.",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"event-stream": "^4.0.1",
"extend": "^3.0.2",
"glob": "^7.2.0",
"gulp-concat": "^2.6.1",
"gulp-if": "^3.0.0",
"plugin-error": "^1.0.1",
"through2": "^4.0.2",
"useref": "^1.4.4",
"vinyl-fs": "^3.0.3"
},
"devDependencies": {
"async-once": "^1.0.1",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.1",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^8.0.0",
"gulp-rename": "^2.0.0",
"mocha": "^9.2.2",
"mock-gulp-dest": "^0.1.1",
"nyc": "^15.1.0",
"should": "*",
"vinyl": "^2.2.1"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha",
"lint": "gulp lint",
"coverage": "nyc npm test && nyc report",
"coveralls": "nyc npm test && nyc report --reporter=lcov"
},
"files": [
"index.js",
"lib"
],
"repository": "jonkemp/gulp-useref",
"keywords": [
"gulpplugin",
"html",
"scripts",
"css",
"optimize",
"concat"
],
"author": "Jonathan Kemp <kempdogg@gmail.com> (http://jonkemp.com/)",
"license": "MIT"
}