forked from julien-c/epub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.14 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
59
{
"name": "epub",
"description": "Parse ePub electronic book files with Node.JS",
"version": "1.2.1",
"author": "Andris Reinman",
"contributors": [
{
"name": "andris",
"email": "[email protected]"
},
{
"name": "Julien Chaumond",
"email": "[email protected]",
"url": "https://github.com/julien-c"
}
],
"homepage": "http://github.com/julien-c/epub",
"repository": {
"type": "git",
"url": "http://github.com/julien-c/epub.git"
},
"files": [
"epub.js",
"epub.d.ts"
],
"main": "./epub",
"typings": "./epub.d.ts",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/julien-c/epub/blob/master/LICENSE"
}
],
"engine": [
"node >=0.3.0"
],
"keywords": [
"epub",
"books"
],
"dependencies": {
"adm-zip": "^0.4.11",
"xml2js": "^0.4.23"
},
"optionalDependencies": {
"zipfile": "^0.5.11"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.7",
"mocha": "^5.2.0",
"p-event": "^4",
"typescript": "3.6.4"
},
"scripts": {
"pretest": "tsc",
"test": "mocha dist/test/ --exit"
}
}