-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
93 lines (93 loc) · 2.37 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "vue-xlsx",
"version": "0.2.1",
"private": false,
"author": {
"name": "Nicolo Maria Mezzopera",
"email": "nicolo.mezzopera@gmail.com",
"url": "donnico.dev"
},
"homepage": "https://vue-xlsx.netlify.com/",
"scripts": {
"dev": "vue-cli-service serve",
"build": "rollup -c --environment NODE_ENV:production",
"prepare": "npm run build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"docs:prepare": "yarn prepare && rm -rf docs/dist/ && mkdir docs/dist/ && cp -r dist docs/",
"docs:dev": "vuepress dev docs",
"docs:build": "yarn docs:prepare && vuepress build docs"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@vue/cli-plugin-babel": "^3.8.0",
"@vue/cli-plugin-eslint": "^3.8.0",
"@vue/cli-plugin-unit-jest": "^3.8.0",
"@vue/cli-service": "^3.8.0",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/test-utils": "^1.0.0-beta.20",
"@vuepress/plugin-google-analytics": "^1.0.0-alpha.44",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.7",
"rollup": "^1.13.0",
"rollup-copy-plugin": "^0.1.0",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-vue": "^4.7.2",
"vue": "^2.6.10",
"vue-server-renderer": "2.6.10",
"vue-template-compiler": "^2.6.10",
"vuepress": "^0.14.11",
"xlsx": "^0.14.3"
},
"resolutions": {
"webpack-dev-middleware": "3.6.0"
},
"files": [
"dist/"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"vue",
"xlsx",
"vuejs"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"main": "dist/vue-xlsx.cjs.js",
"unpkg": "dist/vue-xlsx.umd.js",
"module": "dist/vue-xlsx.es.js",
"sideEffects": [
"polyfills.js"
],
"peerDependencies": {
"vue": "^2.5.17",
"xlsx": "^0.14.1"
},
"repository": {
"type": "git",
"url": "git://github.com/DonNicoJs/vue-xlsx.git"
}
}