-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "epub-gen",
"version": "0.1.0",
"description": "A library to generate EPUB from HTML",
"main": "index.js",
"scripts": {
"compile": "coffee --compile --output ./ ./",
"test": "node test"
},
"repository": {
"type": "git",
"url": "https://github.com/cyrilis/epub-gen.git"
},
"keywords": [
"epub",
"generator",
"ebook",
"html",
"epub-generator"
],
"author": "Cyril Hou <houshoushuai@gmail.com> (http://cyrilis.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyrilis/epub-gen/issues"
},
"homepage": "https://github.com/cyrilis/epub-gen",
"dependencies": {
"archiver": "^3.0.0",
"cheerio": "^0.22.0",
"diacritics": "^1.3.0",
"ejs": "^2.6.1",
"entities": "^1.1.2",
"fs-extra": "^7.0.1",
"mime": "^2.4.0",
"q": "^1.5.1",
"rimraf": "^2.6.3",
"superagent": "^3.8.3",
"superagent-proxy": "^2.0.0",
"underscore": "^1.9.1",
"uslug": "^1.0.4"
},
"devDependencies": {
"coffeescript": "^2.3.2"
}
}