-
Notifications
You must be signed in to change notification settings - Fork 168
/
package.json
44 lines (44 loc) · 1.06 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-json-excel",
"version": "0.3.0",
"description": "Download your JSON as an excel or CSV file directly from the browser",
"main": "dist/vue-json-excel.umd.js",
"module": "dist/vue-json-excel.esm.js",
"scripts": {
"build:dist": "rollup -c ./rollup.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jecovier/vue-json-excel.git"
},
"keywords": [
"vue",
"vuejs",
"vue2",
"Excel",
"xls",
"csv",
"json",
"export",
"json excel",
"download",
"component"
],
"author": "Jose Javier Espinoza",
"license": "MIT",
"bugs": {
"url": "https://github.com/jecovier/vue-json-excel/issues"
},
"homepage": "https://github.com/jecovier/vue-json-excel#readme",
"dependencies": {
"downloadjs": "^1.4.7"
},
"devDependencies": {
"rollup": "^1.7.4",
"rollup-plugin-commonjs": "^9.2.2",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-vue": "^4.7.2",
"vue-template-compiler": "^2.6.10"
}
}