-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 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": "@uiwebkit/tabs",
"version": "1.0.3",
"license": "MIT",
"description": "Uni Tabs",
"author": "Vitali Havryliuk",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"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/tabs/tabs.esm.js",
"jsdelivr": "dist/tabs/tabs.esm.js",
"files": ["dist/"],
"scripts": {
"copy": "gulp",
"build:dev": "stencil build --dev --watch",
"build:prod": "stencil build",
"serve:dev": "stencil build --dev --watch --serve",
"serve:prod": "stencil build --watch --serve --no-open",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"pack": "npm pack",
"publish": "npm publish uiwebkit-tabs-1.0.3.tgz --access public"
},
"dependencies": {
"@stencil/core": "2.14.2",
"@uiwebkit/common": "0.2.0"
},
"devDependencies": {
"@types/jest": "26.0.24",
"gulp": "4.0.2",
"jest": "26.6.3",
"jest-cli": "26.6.3",
"prettier": "2.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/uiwebkit/tabs.git"
},
"homepage": "https://uiwebkit.com/wgt/tabs/1/"
}