forked from sheetjs/sheetjs
SheetJS
489b9cdde4
- require cpexcel instead of full codepage library - hardcode the unescapexml regexp - utf8read short circuit for ASCII strings - cellFormulae also acts on XLSX/XLSM - bin/xlsx.njs do not process formulae unless requested
39 lines
899 B
JSON
39 lines
899 B
JSON
{
|
|
"name": "xlsx",
|
|
"version": "0.7.3",
|
|
"author": "sheetjs",
|
|
"description": "XLSB/XLSX/XLSM (Excel 2007+ Spreadsheet) parser and writer",
|
|
"keywords": [ "xlsx", "xlsb", "xlsm", "office", "excel", "spreadsheet" ],
|
|
"bin": {
|
|
"xlsx": "./bin/xlsx.njs"
|
|
},
|
|
"main": "./xlsx",
|
|
"dependencies": {
|
|
"ssf":"~0.7.0",
|
|
"codepage":"1.x",
|
|
"cfb":">=0.9.1",
|
|
"jszip":"2.2.2",
|
|
"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" }
|
|
}
|