-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.91 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
60
61
62
63
64
65
66
67
68
{
"name": "jw-epub-parser",
"version": "3.29.1",
"type": "module",
"description": "This tool will help you to parse and extract the needed source materials from Meeting Workbook EPUB file. Support for parsing Watchtower Study will be added in future release.",
"keywords": [
"epub parse",
"jw",
"jw.org",
"epub"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"files": [
"dist/*"
],
"homepage": "https://github.com/sws2apps/jw-epub-parser#readme",
"author": "Scheduling Workbox System <[email protected]>",
"bugs": {
"url": "https://github.com/sws2apps/jw-epub-parser/issues",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sws2apps/jw-epub-parser.git"
},
"funding": {
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/sws2apps"
},
"scripts": {
"test": "mocha",
"build": "npx rimraf dist && npx rollup -c",
"parse": "tsx example/index.ts",
"setup:client": "cd client && npm install",
"start:client": "cd client && npm run dev",
"cypress:open": "cypress open",
"cypress:run": "cypress run --browser chrome"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^12.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.0.0",
"@types/path-browserify": "^1.0.2",
"chai": "^5.0.0",
"cypress": "^13.2.0",
"mocha": "^11.0.1",
"rimraf": "^6.0.0",
"rollup": "^4.0.0",
"semantic-release": "^24.0.0",
"tsx": "^4.7.0",
"typescript": "^5.2.2"
},
"dependencies": {
"jszip": "^3.9.1",
"node-html-parser": "^6.1.6",
"path-browserify": "^1.0.1"
}
}