-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
{
"name": "@universalviewer/uv-components",
"version": "0.0.1",
"description": "Stencil Component Starter",
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/uv-components/uv-components.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"lint:all": "prettier --write \"./src/**/*.{js,jsx,json,css,ts,tsx}\" \"!./src/assets/* \"",
"build:dev": "stencil build --dev",
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"netlify": "netlify deploy --dir=www --prod",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@stencil/core": "1.3.0",
"prettier": "^1.18.2",
"prettier-check": "^2.0.0",
"tslint": "^5.17.0"
},
"dependencies": {
"@iiif/manifold": "2.0.0-pre.19",
"@iiif/vocabulary": "1.0.10",
"@types/node": "^12.7.12",
"manifesto.js": "4.0.0-pre.17"
},
"license": "MIT"
}