-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
35 lines (35 loc) · 1 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
{
"name": "webviewer-js-sample",
"version": "1.0.0",
"description": "A simple JS app to demonstrate how to embed PDFTron's WebViewer",
"source": "index.js",
"main": "test/index.js",
"scripts": {
"start": "parcel index.html --open http://localhost:1234",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "parcel build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PDFTron/webviewer-js-sample.git"
},
"author": "Andrey Safonov",
"bugs": {
"url": "https://github.com/PDFTron/webviewer-js-sample/issues"
},
"homepage": "https://github.com/PDFTron/webviewer-js-sample#readme",
"dependencies": {
"@pdftron/webviewer": "^11.0.0"
},
"devDependencies": {
"@parcel/config-default": "^2.12.0",
"parcel": "^2.12.0",
"parcel-reporter-multiple-static-file-copier": "^1.0.5"
},
"multipleStaticFileCopier": [
{
"origin": "node_modules/@pdftron/webviewer/public",
"destination": "dist/public/webviewer"
}
]
}