-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 918 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 918 Bytes
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
{
"name": "gulp-html2string",
"version": "0.1.1",
"description": "Converts static HTML templates to JavaScript strings.",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Rise-Vision/gulp-html2string.git"
},
"private": false,
"keywords": [
"gulp",
"html",
"javascript",
"string",
"conversion"
],
"contributors": [
"Xiyang Chen <settinghead@gmail.com>",
"xvfeng"
],
"license": "GPLv3",
"bugs": {
"url": "https://github.com/Rise-Vision/gulp-html2string/issues"
},
"homepage": "https://github.com/Rise-Vision/gulp-html2string",
"devDependencies": {
"mocha": "~1.20.1"
},
"dependencies": {
"gulp": "~3.8.1",
"gulp-util": "~2.2.17",
"html-minifier": "^0.6.2",
"map-stream": "^0.1.0",
"through2": "~0.5.1"
}
}