-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.48 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": "r2epub",
"version": "1.3.2",
"description": "Typescript based conversion of Respec generated HTML files into EPUB 3.3",
"engines": {
"node": ">=16.x"
},
"main": "dist/index.js",
"types": "src/index.ts",
"scripts": {
"lint": "eslint . --ext .ts",
"build": "tsc",
"docs": "typedoc src/r2epub.ts src/server.ts",
"dist": "tsc; (cd docs/assets/js; tsc server_interface.ts)",
"origin": "git push origin main",
"r2epub": "node dist/r2epub.js",
"server": "node dist/server.js",
"local-test-book": "ts-node src/r2epub.ts http://localhost:8001/LocalData/github/Tools/r2epub/docs/collections/epub.json",
"local-test-document": "ts-node src/r2epub.ts -t http://localhost:8001/LocalData/github/Tools/r2epub/test/spec/Overview.html",
"local-test-clreq": "ts-node src/r2epub.ts http://localhost:8001/LocalData/github/Tools/r2epub/test/clreq/Overview.html",
"local-test-expand": "unzip epub33.epub -d test/epub",
"local-test": "ts-node src/r2epub.ts -t http://localhost:8001/LocalData/github/Tools/r2epub/docs/collections/epub_local.json ; unzip epub33.epub -d test/epub"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iherman/r2epub.git"
},
"keywords": [
"respec",
"epub"
],
"author": "Ivan Herman <[email protected]>",
"license": "W3C-20150513",
"bugs": {
"url": "https://github.com/iherman/r2epub/issues"
},
"homepage": "https://iherman.github.io/r2epub/",
"dependencies": {
"ajv": "^6.12.6",
"commander": "^5.1.0",
"jsdom": "^19.0.0",
"jszip": "^3.2.2",
"minimist": "^1.2.5",
"node-fetch": "^2.6.1",
"underscore": "^1.10.2",
"url": "^0.11.0",
"valid-url": "^1.0.9",
"w3c-xmlserializer": "^3.0.0",
"xmlbuilder2": "^1.4.3"
},
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/commander": "^2.12.2",
"@types/jsdom": "^16.2.14",
"@types/jszip": "^3.1.7",
"@types/node": "^13.7.7",
"@types/node-fetch": "^2.5.5",
"@types/underscore": "^1.9.4",
"@types/valid-url": "^1.0.2",
"@types/xmlserializer": "^0.6.0",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.13.0",
"terser": "^4.6.11",
"typedoc": "^0.15.8",
"typescript": "^4.5.4"
}
}