-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.01 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
39
40
41
42
{
"name": "table2excel.js",
"version": "1.0.0",
"description": "",
"main": "es5/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.core.config.js -p && webpack --config webpack.umd.config.js -p",
"build:es5": "babel src --out-dir es5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackgit/table2excel.js.git"
},
"keywords": [
"table",
"js",
"excel",
"xlsx",
"xls"
],
"author": "ygjack414@hotmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/jackgit/table2excel.js/issues"
},
"homepage": "https://github.com/jackgit/table2excel.js#readme",
"dependencies": {
"file-saver": "^1.3.3"
},
"peerDependencies": {
"exceljs": "^0.6.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"cross-env": "^5.2.0"
}
}