forked from sheetjs/sheetjs
SheetJS
cd2e639fc2
- export `sheet_to_txt` (fixes #905 h/t @aj4mq) - BIFF4 Format Record aligned to BIFF 2/3 (fixes #909 h/t @ToujouAya) - updated CFB to 1.0.1 - typescript standalone demo - nexe / pkg xlsx.njs demo
20 lines
409 B
JSON
20 lines
409 B
JSON
{
|
|
"name": "xlsx-ts",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"version": "0.0.0",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc && browserify -o dist/browser.js src/index.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"xlsx": "*"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "~2.6.1",
|
|
"browserify": "~14.5.0"
|
|
}
|
|
}
|