-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "vue-toc",
"version": "0.0.2",
"description": "A table of contents component for vue.js",
"main": "dist/vue-toc.js",
"files": [
"dist/"
],
"scripts": {
"bundle": "rollup -c",
"build": "yarn bundle"
},
"repository": "https://github.com/isy/vue-toc",
"keywords": [
"Vue.js",
"vue",
"toc",
"Table of Contents"
],
"author": "isy",
"license": "MIT",
"private": false,
"peerDependencies": {
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-external-helpers": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@vue/compiler-sfc": "^3.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.10.0",
"eslint-plugin-vue": "^6.2.2",
"rollup": "^2.28.2",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-vue": "^6.0.0-beta.10",
"vue-template-compiler": "^2.6.12"
}
}