-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 2.69 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "xlsx-extract",
"version": "0.2.0",
"license": "MIT",
"description": "simple async XLSX reader with low memory footprint",
"homepage": "https://github.com/ffalt/xlsx-extract",
"keywords": [
"xlsx",
"tsv",
"extract",
"excel",
"spreadsheet"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig.cjs.json && node -e \"require('fs').writeFileSync('dist/lib-cjs/package.json', JSON.stringify({type:'commonjs'}))\"",
"pretest": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
},
"dependencies": {
"commander": "14.0.3",
"sax": "1.6.0",
"yauzl": "3.3.1"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@jest/globals": "30.4.1",
"@stylistic/eslint-plugin": "5.10.0",
"@types/jest": "30.0.0",
"@types/jest-expect-message": "1.0.4",
"@types/node": "25.9.1",
"@types/sax": "1.2.7",
"@types/tmp": "0.2.6",
"@types/yauzl": "2.10.3",
"eslint": "10.4.0",
"eslint-plugin-jest": "29.15.2",
"eslint-plugin-unicorn": "64.0.0",
"globals": "17.6.0",
"jest": "30.4.2",
"jest-expect-message": "1.1.3",
"rimraf": "6.1.3",
"tmp": "0.2.6",
"ts-jest": "29.4.11",
"typescript": "6.0.3",
"typescript-eslint": "8.59.4"
},
"files": [
"dist",
"bin",
"LICENSE",
"README.md"
],
"bugs": {
"url": "https://github.com/ffalt/xlsx-extract/issues"
},
"author": {
"name": "ffalt"
},
"contributors": [
{
"name": "Michael Pelikan",
"url": "https://github.com/mpelikan"
},
{
"name": "Mikuso",
"url": "https://github.com/mikuso"
},
{
"name": "Vasil Velichkov",
"url": "https://github.com/velichkov"
},
{
"name": "Laurence Hudson",
"url": "https://github.com/laurence-hudson-tessella"
},
{
"name": "Chrisdf",
"url": "https://github.com/Chrisdf"
}
],
"bin": {
"xlsxe": "./bin/xlsxe.js"
},
"main": "dist/lib-cjs/index.js",
"types": "dist/lib-cjs/index.d.ts",
"module": "dist/lib/index.js",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/lib/index.d.ts",
"default": "./dist/lib/index.js"
},
"require": {
"types": "./dist/lib-cjs/index.d.ts",
"default": "./dist/lib-cjs/index.js"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ffalt/xlsx-extract.git"
},
"engines": {
"node": ">= 20.0.0"
}
}