forked from kinddde/js-export-excel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "js-export-excel",
"description": "json export excel",
"version": "1.1.3",
"author": "kin <[email protected]>",
"private": false,
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "[email protected]:cuikangjie/js-export-excel.git"
},
"keywords": [
"json export",
"excel",
"json export excel"
],
"scripts": {
"dev": "webpack-dev-server --hot --port 9000 --host 0.0.0.0",
"build": "node ./build.js",
"prepublish": "yarn run build"
},
"dependencies": {
"blob.js": "^1.0.1",
"file-saver": "^1.3.3",
"script-loader": "0.7.2",
"xlsx": "^0.11.17"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-component": "^0.9.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.22.0",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.30.1",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.10.1"
}
}