-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
117 lines (117 loc) · 2.71 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
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
115
116
117
{
"name": "xlsx-extract",
"version": "0.1.4",
"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:commonjs && npm run build:esm && npm run build:single",
"build:commonjs": "tsc",
"build:esm": "tsc -m es6 --outDir dist/lib-esm",
"build:single": "webpack --mode production",
"build:deploy": "npm run build",
"pretest": "tsc",
"lint": "tslint --project tsconfig.json \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
},
"dependencies": {
"commander": "10.0.0",
"sax": "1.2.4",
"yauzl": "2.10.0"
},
"devDependencies": {
"node-expat": "2.4.0",
"@types/jest": "29.4.4",
"@types/jest-expect-message": "1.0.4",
"@types/node": "18.15.3",
"@types/sax": "1.2.4",
"@types/tmp": "0.2.3",
"@types/yauzl": "2.10.0",
"jest": "29.5.0",
"jest-expect-message": "1.1.3",
"natives": "1.1.6",
"rimraf": "4.4.0",
"source-map-support": "0.5.21",
"tmp": "0.2.1",
"ts-jest": "29.0.5",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"tslint": "6.1.3",
"typescript": "5.0.2",
"webpack": "5.76.2",
"webpack-cli": "5.0.1",
"webpack-node-externals": "3.0.0"
},
"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": "./bin/xlsxe.js",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ffalt/xlsx-extract"
},
"engines": {
"node": ">= 14.0.0"
},
"nyc": {
"temp-directory": "./coverage/.nyc_output",
"report-dir": "./coverage/coverage",
"include": [
"src/*.ts",
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"text-summary",
"lcov",
"html"
],
"check-coverage": true,
"sourceMap": true,
"instrument": true
},
"readmeFilename": "README.md"
}