-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 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
{
"name": "parse-epub",
"description": "A modern and modular ePub parser",
"main": "lib.js",
"scripts": {
"bundle": "rollup --config rollup.config.js",
"prepublish": "NODE_ENV=production npm run bundle",
"test": "jest __tests__/*-test.js",
"test:watch": "jest --watch __tests__/*-test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dariocravero/parse-epub.git"
},
"keywords": [
"epub",
"parse",
"parser"
],
"author": "Darío Javier Cravero <dario@uxtemple.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dariocravero/parse-epub/issues"
},
"homepage": "https://github.com/dariocravero/parse-epub#readme",
"devDependencies": {
"babel-jest": "^18.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"jest": "^18.1.0",
"rollup": "^0.41.4",
"rollup-plugin-buble": "^0.15.0",
"rollup-watch": "^3.2.2"
},
"dependencies": {
"resolve-pathname": "^2.0.2",
"x2js": "^3.1.0"
},
"version": "4.2.4"
}