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