-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
68 lines (68 loc) · 1.77 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
{
"name": "table-xlsx",
"version": "0.1.15",
"description": "Based on SheetJS encapsulation, the function of exporting files and parsing files to generate table data is realized",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PengChen96/table-xlsx.git"
},
"bugs": {
"url": "https://github.com/PengChen96/table-xlsx/issues"
},
"main": "./index.js",
"types": "lib/index.d.ts",
"files": [
"dist",
"lib",
"index.js"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"dev": "webpack serve --config ./webpack.dev.config.js --progress",
"build": "webpack",
"eslint": "eslint src --ext .ts",
"test": "jest --coverage"
},
"keywords": [
"xlsx",
"export"
],
"author": "PengChen",
"license": "MIT",
"peerDependencies": {
"@pengchen/xlsx": "^0.0.6"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@types/jest": "^27.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"antd": "^4.16.6",
"babel-loader": "^8.2.2",
"buffer": "^6.0.3",
"css-loader": "^5.2.6",
"eslint": "^7.30.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"style-loader": "^3.0.0",
"terser-webpack-plugin": "^5.2.5",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.43.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-node-externals": "1.6.0"
},
"dependencies": {
"@pengchen/xlsx": "^0.0.6"
}
}