-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.89 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
69
70
71
72
73
{
"name": "i18n-xlsx-to-json-directory",
"version": "0.5.1",
"description": "Library that converts xlsx file into json directory structure used by i18next, and vice versa.",
"type": "module",
"private": false,
"keywords": [
"convert",
"excel",
"excelToJson",
"i18n",
"i18next",
"jsonToExcel",
"jsonToXlsx",
"xlsx",
"xlsxToJson"
],
"author": {
"name": "Kyeonghwan Son",
"email": "[email protected]",
"url": "https://snapperbay4453.github.io"
},
"homepage": "https://github.com/snapperbay4453/i18n-xlsx-to-json-directory",
"repository": {
"type": "git",
"url": "https://github.com/snapperbay4453/i18n-xlsx-to-json-directory.git"
},
"bugs": {
"url": "https://github.com/snapperbay4453/i18n-xlsx-to-json-directory/issues"
},
"exports": {
"./browser": "./dist/browser.js",
"./node": "./dist/node.cjs"
},
"scripts": {
"__clear": "rimraf --glob dist",
"check-updates": "npx npm-check-updates -u",
"lint": "eslint ./src",
"test": "jest",
"build": "npm run __clear && rollup -c",
"watch": "npm run __clear && rollup -cw"
},
"bin": {
"i18n-xlsx-to-json-directory": "./dist/node.cjs"
},
"dependencies": {
"commander": "^11.1.0",
"file-saver-es": "^2.0.5",
"jszip": "^3.10.1",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.0/xlsx-0.20.0.tgz"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.0.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/file-saver": "^2.0.6",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"rollup": "^3.29.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"license": "Apache-2.0"
}