forked from Ryusei217/ViewerJS
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name" : "node-viewerjs",
"author" : "KO GmbH <http://www.kogmbh.com/>",
"description" : "Document viewer component for PDF and ODF documents. Done with just HTML5, CSS3, and JavaScript. Powered by pdf.js and WebODF.",
"version" : "0.7.2",
"contributors" : [
{
"name": "KO GmbH",
"site": "http://viewerjs.org/"
},
{
"name" : "Jeffrey van Norden",
"email": "[email protected]"
}
],
"license" : "AGPL-3.0",
"keywords" : [
"OpenDocument", "ODF", "PDF",
"Text", "Document", "Slides", "Presentation",
"ODT", "OTT", "FODT",
"ODP", "OTP", "FODP",
"Viewer"
],
"scripts" : {
"build": "node ./build/build.js",
"test" : "node ./test/server.js"
},
"main" : "./release/index.html",
"repository" : {
"type": "git",
"url" : "git://github.com/vandernorth/ViewerJS.git"
},
"dependencies" : {
"pdfjs-dist" : "1.8",
"node-webodf": "0.5.11"
},
"devDependencies": {
"browserify": "^13",
"shelljs" : "^0",
"express" : "^4.1"
},
"engines" : {
"node": ">=4.1.2"
}
}