-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 889 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 889 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
{
"name": "epubjs-cli",
"version": "0.1.6",
"author": "Fred Chasen",
"license": "MIT",
"homepage": "https://futurepress.org",
"repository": {
"type": "git",
"url": "https://github.com/futurepress/epubjs-cli.git"
},
"type": "module",
"main": "./src/index.js",
"exports": {
"import": "./src/index.js",
"require": "./src/index.js",
"default": "./src/index.js"
},
"bin": "./src/cli.js",
"scripts": {
"start": "./src/cli.js",
"lint": "eslint src",
"test": "npm run lint"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.6",
"commander": "^9.3.0",
"epubjs": "^0.5.0-alpha.3",
"eslint": "^8.29.0",
"express": "^4.18.1",
"jsdom": "^20.0.3",
"jszip": "^3.10.1",
"liquidjs": "^10.1.0",
"mime-types": "^2.1.35",
"node-fetch": "^3.2.5",
"ora": "^6.1.0"
},
"files": [
"dist",
"src"
]
}