forked from sheetjs/sheetjs
SheetJS
6bc24374b9
- parsexmltag and other hot functions now better optimized for v8 - monomorphic functions (different types -> different funcs) - more efficient decode_range implementation when source is trusted - regular expressions cached and simplified without breaking correctness - more efficient utf8 techniques when available - XLSX: large functions broken down into sub-functions (e.g. `parse_ws_xml`) - XLSB: avoid unnecessary binds - XLSB: assume no exotic codepage exists (no one else tries to write XLSB) - demo exposes rABS / worker / transferable options - more tests - jszip updated to 2.3.0 - SSF updated to 0.8.1 - codepage updated to 1.3.1
41 lines
935 B
JSON
41 lines
935 B
JSON
{
|
|
"name": "xlsx",
|
|
"version": "0.7.7",
|
|
"author": "sheetjs",
|
|
"description": "Excel 2007+ spreadsheet (XLSB/XLSX/XLSM) parser and writer",
|
|
"keywords": [ "excel", "xlsx", "xlsb", "xlsm", "office", "spreadsheet" ],
|
|
"bin": {
|
|
"xlsx": "./bin/xlsx.njs"
|
|
},
|
|
"main": "./xlsx",
|
|
"dependencies": {
|
|
"ssf":"~0.8.1",
|
|
"codepage":"~1.3.1",
|
|
"cfb":">=0.10.0",
|
|
"jszip":"2.3.0",
|
|
"crc-32":"",
|
|
"adler-32":"",
|
|
"commander":""
|
|
},
|
|
"devDependencies": {
|
|
"mocha":"",
|
|
"xlsjs":"",
|
|
"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" }
|
|
}
|