forked from bruderstein/gulp-html-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 903 Bytes
/
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
{
"name": "gulp-html-src",
"version": "1.0.0",
"description": "Gulp plugin to accept HTML input, and output the linked JavaScript (script tags) and CSS (link tags)",
"main": "./index.js",
"repository": "git://github.com/davegb3/gulp-html-src.git",
"homepage": "http://github.com/davegb3/gulp-html-src",
"author": "Dave Brotherstone",
"licenses": [
{
"type" : "MIT",
"url" : "http://github.com/davegb3/gulp-html-src/raw/master/LICENSE"
}
],
"scripts": {
"test": "mocha"
},
"dependencies": {
"vinyl": "~0.2.3",
"through2": "~0.4.1",
"cheerio": "~0.13.1",
"extend": "~1.2.1",
"q": "~1.0.1"
},
"devDependencies": {
"mocha": "*",
"chai": "*",
"gulp-util": "~2.2.14"
},
"engines": {
"node": ">= 0.10.0"
},
"keywords": [
"gulp",
"html",
"script",
"link",
"gulpplugin",
"gulp-plugin"
]
}