forked from dteviot/WebToEpub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.82 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
{
"name": "@dteviot/web_to_epub",
"version": "1.0.0",
"description": "Extension for Chrome and Firefox that converts a story on Baka-Tsuki (or a number of other sites) into an EPUB.",
"dependencies": {
"jszip": "^3.7.1"
},
"devDependencies": {
"@xmldom/xmldom": "^0.7.5",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"http-server": "^13.0.2"
},
"main": "popup.html",
"directories": {
"doc": "doc"
},
"scripts": {
"up": "npm add jszip@latest && npm install",
"postinstall": "copyfiles -V -u 1 node_modules/jszip/dist/jszip.min.js plugin",
"test": "http-server -o unitTest/Tests.html",
"lint": "cd eslint && node pack.js && eslint packed.js",
"build": "cd eslint && node pack.js",
"release": "node eslint/release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dteviot/WebToEpub.git"
},
"keywords": ["epub"],
"author": {
"name": "David Teviotdale",
"email": "[email protected]"
},
"contributors" : [
{ "name": "Alen Toma"},
{ "name": "Asif Mahmood"},
{ "name": "Aurimas Niekis"},
{ "name": "Markus Vieth"},
{ "name": "Michael Fox"},
{ "name": "typhoon71"},
{ "name": "toshiya44"},
{ "name": "dreamer2908"},
{ "name": "GallusMax"},
{ "name": "Hogesyx"},
{ "name": "snnsnn"},
{ "name": "Tom Goetz"},
{ "name": "Sergii Pravdzivyi"},
{ "name": "JimmXinu"},
{ "name": "gamebeaker"},
{ "name": "Mathnerd314"},
{ "name": "Kondeeza"},
{ "name": "Sickan90"},
{ "name": "Kiradien"},
{ "name": "Miracutor"},
{ "name": "Synteresis"},
{ "name": "Lej77"},
{ "name": "Dimava"}
],
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/dteviot/WebToEpub/issues"
},
"homepage": "https://github.com/dteviot/WebToEpub#readme",
"private": true
}