forked from sheetjs/sheetjs
SheetJS
d15b81e0e9
- very basic XLSX / XLSM write support with roundtrip tests (XLSB stubs) - reorganized source tree - new XLSB range check ensures that A1 is not emitted for empty sheets - SSF table emitted in output (consistent with js-xls) - CLI supports writing Backwards-incompatible changes: o new Property aliases (see CORE_PROPS and EXT_PROPS) o FILETIME custom properties parsed as JS Dates o `xlsx2csv` -> `xlsx` (and `bin/xlsx{2csv,}.njs`)
38 lines
871 B
JSON
38 lines
871 B
JSON
{
|
|
"name": "xlsx",
|
|
"version": "0.7.0",
|
|
"author": "sheetjs",
|
|
"description": "XLSB / XLSX / XLSM (Excel 2007+ Spreadsheet) parser",
|
|
"keywords": [ "xlsx", "xlsb", "xlsm", "office", "excel", "spreadsheet" ],
|
|
"bin": {
|
|
"xlsx": "./bin/xlsx.njs"
|
|
},
|
|
"main": "./xlsx",
|
|
"dependencies": {
|
|
"ssf":"~0.6.4",
|
|
"codepage":"1.x",
|
|
"cfb":"",
|
|
"jszip":"2.2.0",
|
|
"commander":""
|
|
},
|
|
"devDependencies": {
|
|
"mocha":"",
|
|
"uglify-js":"",
|
|
"jasmine-node": "x"
|
|
},
|
|
"repository": { "type":"git", "url":"git://github.com/SheetJS/js-xlsx.git" },
|
|
"scripts": {
|
|
"pretest": "git submodule init && git submodule update",
|
|
"test": "make test",
|
|
"test-jasmine": "jasmine-node --verbose tests/"
|
|
},
|
|
"config": {
|
|
"blanket": {
|
|
"pattern": "xlsx.js"
|
|
}
|
|
},
|
|
"bugs": { "url": "https://github.com/SheetJS/js-xlsx/issues" },
|
|
"license": "Apache-2.0",
|
|
"engines": { "node": ">=0.8" }
|
|
}
|