-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.36 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
{
"name": "iiif-explorer",
"version": "1.0.8",
"description": "Browse and search IIIF collections",
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/iiif-explorer/iiif-explorer.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"lint:all": "prettier --write \"./src/**/*.{js,jsx,json,css,ts,tsx}\" \"!./src/assets/* \"",
"build": "npm run lint:all && stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@stencil/core": "^1.8.8",
"@types/jest": "24.0.25",
"@types/puppeteer": "1.19.0",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"prettier": "1.18.2",
"prettier-check": "2.0.0",
"puppeteer": "1.19.0",
"tslint": "^5.19.0",
"tslint-config-prettier": "1.18.0",
"typescript-tslint-plugin": "0.5.4"
},
"license": "MIT",
"dependencies": {
"@edsilv/utils": "^1.0.2",
"@ionic/core": "^5.0.5",
"@types/node": "^13.9.1",
"manifesto.js": "^4.0.4"
}
}