-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.4 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": "@universalviewer/uv-ebook-components",
"version": "1.0.2",
"description": "UV Ebook Components",
"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-ebook-components/uv-ebook-components.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 test && npm run build"
},
"devDependencies": {
"@stencil/core": "^1.3.3",
"@types/jest": "^24.0.23",
"@types/puppeteer": "1.19.0",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"prettier": "^1.19.1",
"prettier-check": "^2.0.0",
"puppeteer": "1.19.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript-tslint-plugin": "^0.5.5"
},
"license": "MIT",
"dependencies": {
"@universalviewer/epubjs": "^0.3.85-uv.17",
"jszip": "^3.2.2"
}
}