-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
44 lines (44 loc) · 1.47 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
{
"name": "uv-app-starter",
"version": "0.0.1",
"description": "Universal Viewer App Starter",
"main": "index.js",
"engines": {
"node": ">=8.9.1",
"npm": ">=3.10.8"
},
"scripts": {
"postinstall": "npm run sync",
"sync": "rm -rf uv && cp -R node_modules/universalviewer/dist uv",
"build": "biiif collection -u http://localhost:8888/collection -g",
"dist:gh": "biiif collection -u http://universalviewer.io/uv-app-starter/collection -g",
"dist:netlify": "biiif collection -u https://uv-app-starter.netlify.com/collection -g",
"dist:dat": "biiif collection -u dat://59ff047d6c3eadea7031769479e2aa436c88f046ad16c898577b105000ff85a9/collection -g",
"publish:gh": "npm run dist:gh && git add -A && git commit -m \"published\" && git push origin gh-pages",
"publish:netlify": "npm run dist:netlify && netlify deploy --prod",
"publish:dat": "npm run dist:dat",
"start": "npm run build && http-server --cors -c-1 -p 8888"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UniversalViewer/uv-app-starter.git"
},
"keywords": [
"IIIF",
"universalviewer",
"starter"
],
"author": "@edsilv",
"license": "MIT",
"bugs": {
"url": "https://github.com/UniversalViewer/uv-app-starter/issues"
},
"homepage": "https://github.com/UniversalViewer/uv-app-starter#readme",
"devDependencies": {
"biiif-cli": "0.0.19",
"http-server": "^0.10.0"
},
"dependencies": {
"universalviewer": "3.0.33"
}
}