-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 KB
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
{
"name": "vue3-dynamic-tabs",
"version": "0.1.7",
"description": "A Vue component to easily render tabs, dynamically",
"main": "src/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --config docs/webpack.config.js",
"demo": "NODE_ENV=production webpack --config docs/webpack.config.js",
"build": "rm -rf dist && NODE_ENV=production webpack",
"lint": "eslint --ext .js,.vue --fix src __tests__; exit 0",
"prepublish": "npm run test; npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/Tapha/vue3-dynamic-tabs.git"
},
"author": "Tapha",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tapha/vue3-dynamic-tabs/issues"
},
"homepage": "https://github.com/Tapha/vue3-dynamic-tabs",
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"eslint": "^3.7.1",
"vue": "^3.0.0",
"vue-loader": "^16.1.0",
"webpack": "^5.0.0",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"uuid": "^8.3.2"
}
}