This repository has been archived on 2019-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
epub/package.json

45 lines
883 B
JSON
Raw Normal View History

2011-06-13 20:20:44 +00:00
{
2014-04-02 09:34:21 +00:00
"name": "epub",
"description": "Parse ePub electronic book files with Node.JS",
2018-06-03 19:03:59 +00:00
"version": "0.2.1",
2014-04-02 09:34:21 +00:00
"author": "Andris Reinman",
"contributors": [
{
"name": "andris",
"email": "andris@node.ee"
2011-06-13 20:20:44 +00:00
},
2014-04-02 09:34:21 +00:00
{
"name": "Julien Chaumond",
"email": "chaumond@gmail.com",
"url": "https://github.com/julien-c"
}
],
"homepage": "http://github.com/julien-c/epub",
"repository": {
"type": "git",
"url": "http://github.com/julien-c/epub.git"
},
"main": "./epub",
2016-08-10 14:57:40 +00:00
"typings": "./epub.d.ts",
2014-04-02 09:34:21 +00:00
"licenses": [
{
"type": "MIT",
"url": "http://github.com/julien-c/epub/blob/master/LICENSE"
}
],
"engine": [
"node >=0.3.0"
],
"keywords": [
"epub",
"books"
2018-06-03 19:03:39 +00:00
],
"dependencies": {
"adm-zip": "^0.4.11",
"xml2js": "^0.4.19"
},
"optionalDependencies": {
"zipfile": "^0.5.11"
}
2011-06-13 20:20:44 +00:00
}