-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.2 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "vue-nav-tab",
"version": "2.5.0",
"description": "Tab components for Vue.js project",
"author": "Phạm Trung Kiên",
"scripts": {
"dev": "cross-env NODE_ENV=development vue-cli-service serve",
"build": "cross-env NODE_ENV=production rollup -c",
"test:unit": "vue-cli-service test:unit",
"lint": "eslint . --ext .js,.ts,.vue --fix",
"prepublishOnly": "yarn build",
"docs": "docsify serve docs"
},
"main": "dist/index.common.js",
"module": "dist/index.es.js",
"unpkg": "dist/vue-nav-tab.umd.js",
"jsdelivr": "dist/vue-nav-tab.umd.js",
"types": "types/index.d.ts",
"files": [
"dist/",
"types/"
],
"devDependencies": {
"@types/jest": "^24.0.19",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/cli-plugin-babel": "~5.0.0-rc.2",
"@vue/cli-plugin-eslint": "~5.0.0-rc.2",
"@vue/cli-plugin-typescript": "~5.0.0-rc.2",
"@vue/cli-plugin-unit-jest": "~5.0.0-rc.2",
"@vue/cli-service": "~5.0.0-rc.2",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"@vue/test-utils": "^2.0.0-0",
"autoprefixer": "^10.4.2",
"core-js": "^3.21.1",
"cross-env": "^7.0.3",
"docsify-cli": "4.4.3",
"eslint": "^7.32.0",
"eslint-config-pk": "^1.0.2",
"eslint-plugin-vue": "^8.0.3",
"jest": "^27.1.0",
"postcss": "^8.4.6",
"rollup": "^2.67.2",
"rollup-plugin-banner": "^0.2.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-vue": "^6.0.0",
"tailwindcss": "^3.0.23",
"ts-jest": "^27.0.4",
"tslib": "^2.3.1",
"typescript": "^4.5.5",
"vue": "^3.2.31",
"vue-cli-plugin-tailwind": "^3.0.0-beta.0",
"vue-jest": "^5.0.0-0"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"browserslist": [
"defaults",
"not IE 11"
],
"keywords": [
"vue",
"tab"
],
"license": "MIT",
"repository": {
"url": "https://github.com/kien5436/vue-nav-tab.git",
"type": "git"
},
"homepage": "https://kien5436.github.io/vue-nav-tab/",
"dependencies": {}
}