-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "awesome-excel",
"version": "1.0.4",
"description": "js easy export excel",
"main": "lib/awesomeExcel.min.js",
"types": "types/index.d.ts",
"files": [
"lib/",
"src/",
"types/"
],
"scripts": {
"dev": "grunt dev",
"build": "grunt",
"type-build": "grunt clean:ts-types && tsc && grunt clean:ts-build"
},
"keywords": [
"excel",
"xlsx",
"export",
"javascript"
],
"author": "fenglekai",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fenglekai/awesome-excel"
},
"bugs": {
"url": "https://github.com/fenglekai/awesome-excel/issues"
},
"homepage": "https://github.com/fenglekai/awesome-excel#readme",
"dependencies": {
"exceljs": "^4.4.0",
"file-saver": "^2.0.5"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"grunt": "^1.6.1",
"grunt-babel": "^8.0.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-webpack": "^6.0.0",
"html-webpack-plugin": "^5.6.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}