-
-
Notifications
You must be signed in to change notification settings - Fork 305
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "excellentexport",
"version": "3.9.9",
"description": "Client side JavaScript export to Excel or CSV",
"license": "MIT",
"homepage": "https://jordiburgos.com",
"author": "Jordi Burgos <jordiburgos@gmail.com>",
"bugs": "https://github.com/jmaister/excellentexport/issues",
"repository": {
"type": "git",
"url": "git://github.com/jmaister/excellentexport.git"
},
"keywords": [
"excel",
"export",
"csv",
"javascript",
"client",
"side"
],
"scripts": {
"build": "webpack --config webpack.config.js --progress --mode development --watch",
"prod": "webpack --config webpack.config.js --progress --mode production",
"test": "jest --coverage",
"watch": "jest --watch",
"postinstall": "node scripts/postinstall.js"
},
"main": "dist/excellentexport.js",
"devDependencies": {
"@types/jest": "29.5.14",
"@types/jest-environment-puppeteer": "5.0.6",
"@types/node": "22.12.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-puppeteer": "11.0.0",
"puppeteer": "24.1.1",
"ts-jest": "29.2.5",
"ts-loader": "9.5.2",
"typescript": "5.7.3",
"webpack": "5.97.1",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
}
}