-
Notifications
You must be signed in to change notification settings - Fork 280
/
package.json
85 lines (85 loc) · 2.41 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "polar-bookshelf",
"version": "1.0.0-beta9",
"description": "A PDF bookshelf for incremental reading",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist-linux": "electron-builder --config=electron-builder.yml --linux deb tar.gz snap --publish always --draft=false",
"dist-macos": "electron-builder --config=electron-builder.yml --macos dmg --publish always --draft=false",
"dist-win": "electron-builder --config=electron-builder.yml --win nsis portable --publish always --draft=false",
"test": "./node_modules/.bin/mocha --exit --recursive \"web/js/**/*Test.js\"",
"webpack": "npx webpack --config=webpack.config.js",
"webpack-watch": "npx webpack --config=webpack.config.js --watch",
"start-with-console": "./node_modules/.bin/electron --enable-remote-debugging --interactive --enable-console-logging ."
},
"repository": "https://github.com/burtonator/polar-bookshelf",
"keywords": [
"Electron",
"PDF",
"viewer",
"PDF.js",
"ebook",
"annotations"
],
"author": {
"name": "contributors",
"email": "[email protected]"
},
"contributors": [
{
"name": "Praharsh Jain"
},
{
"name": "Kevin Burton"
}
],
"build": {
"appId": "io.inputneuron/polar",
"mac": {
"category": "Books"
}
},
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"chai-diff": "^1.0.1",
"electron": "^2.0.2",
"electron-builder": "^20.15.1",
"mocha": "^5.2.0",
"timekeeper": "^2.1.2",
"webpack-cli": "^3.0.2",
"webpack-serve": "^1.0.2"
},
"dependencies": {
"base58check": "^2.0.0",
"bootstrap": "^4.0.0-alpha.6",
"codemirror": "^5.38.0",
"editor.md": "^1.5.0",
"editor.md.webpack": "^1.5.0",
"express": "^4.16.3",
"featherlight": "^1.7.13",
"file-exists-promise": "^1.0.2",
"flowchart": "^1.2.0",
"font-awesome": "^4.7.0",
"fontawesome": "^4.7.2",
"jquery": "^3.3.1",
"jquery-contextmenu": "^2.6.4",
"jquery.flowchart": "^1.1.0",
"keccak": "^1.4.0",
"markdown-plus": "^2.5.2",
"marked": "^0.4.0",
"micromodal": "^0.3.2",
"prettify": "^0.1.7",
"raphael": "^2.2.7",
"requirejs": "^2.3.5",
"rimraf": "^2.6.2",
"rx-collection": "^0.1.0",
"rxjs": "^6.2.0",
"serve-static": "^1.13.2",
"simplemde": "^1.11.2",
"texthighlighter": "^1.2.4",
"underscore": "^1.9.1",
"webpack": "^4.11.0"
}
}