json-as-xlsx 2.5.2 → 2.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/{dist/LICENSE → LICENSE}
RENAMED
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
package/dist/package.json
DELETED
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "json-as-xlsx",
|
|
3
|
-
"version": "2.5.2",
|
|
4
|
-
"license": "MIT",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"typings": "dist/index.d.ts",
|
|
8
|
-
"description": "Create excel xlsx file from json",
|
|
9
|
-
"author": "LuisEnMarroquin <luis@marroquin.dev>",
|
|
10
|
-
"homepage": "https://xlsx.marroquin.dev",
|
|
11
|
-
"type": "commonjs",
|
|
12
|
-
"private": false,
|
|
13
|
-
"scripts": {
|
|
14
|
-
"start": "tsc -p tsconfig.json --watch",
|
|
15
|
-
"build": "tsc -p tsconfig.json && uglifyjs dist/index.js --output dist/index.js",
|
|
16
|
-
"test": "jest --coverage"
|
|
17
|
-
},
|
|
18
|
-
"dependencies": {
|
|
19
|
-
"xlsx": "^0.18.5"
|
|
20
|
-
},
|
|
21
|
-
"devDependencies": {
|
|
22
|
-
"@testing-library/jest-dom": "^5.16.5",
|
|
23
|
-
"@types/jest": "^29.2.4",
|
|
24
|
-
"@types/node": "^18.11.11",
|
|
25
|
-
"@types/testing-library__jest-dom": "^5.14.5",
|
|
26
|
-
"jest": "^29.3.1",
|
|
27
|
-
"jest-cli": "^29.3.1",
|
|
28
|
-
"jest-environment-jsdom": "^29.3.1",
|
|
29
|
-
"ts-jest": "^29.0.3",
|
|
30
|
-
"typescript": "^4.9.3",
|
|
31
|
-
"uglify-js": "^3.17.4"
|
|
32
|
-
},
|
|
33
|
-
"files": [
|
|
34
|
-
"dist"
|
|
35
|
-
],
|
|
36
|
-
"repository": {
|
|
37
|
-
"type": "git",
|
|
38
|
-
"url": "https://github.com/LuisEnMarroquin/json-as-xlsx.git"
|
|
39
|
-
},
|
|
40
|
-
"bugs": {
|
|
41
|
-
"url": "https://github.com/LuisEnMarroquin/json-as-xlsx/issues"
|
|
42
|
-
},
|
|
43
|
-
"keywords": [
|
|
44
|
-
"json",
|
|
45
|
-
"xlsx",
|
|
46
|
-
"excel",
|
|
47
|
-
"jsonc",
|
|
48
|
-
"json-xlsx",
|
|
49
|
-
"xlsx-json",
|
|
50
|
-
"create-xlsx",
|
|
51
|
-
"create-excel",
|
|
52
|
-
"json-as-xlsx",
|
|
53
|
-
"json-to-xlsx",
|
|
54
|
-
"json-as-excel",
|
|
55
|
-
"json-to-excel",
|
|
56
|
-
"xlsx-as-json",
|
|
57
|
-
"xlsx-from-json",
|
|
58
|
-
"microsoft",
|
|
59
|
-
"microsoft-xlsx",
|
|
60
|
-
"microsoft-excel"
|
|
61
|
-
],
|
|
62
|
-
"browserslist": [
|
|
63
|
-
">0.2%",
|
|
64
|
-
"not dead",
|
|
65
|
-
"not op_mini all"
|
|
66
|
-
]
|
|
67
|
-
}
|