forked from sheetjs/sheetjs
SheetJS
713f5aa417
- merged test repo with xls - travis integration - shifted to Apache 2.0 LICENSE - mocha tests The shift to Apache 2.0 was long overdue. It's becoming clear that compliance requires deeper integration with the xls libraries and other implementations whose specifications are covered under the OSP. It was a grave oversight for the ISO and ECMA people to not try to implement parsers themselves, for if they did I suspect the outcome would have been much different
34 lines
770 B
JSON
34 lines
770 B
JSON
{
|
|
"name": "xlsx",
|
|
"version": "0.3.0",
|
|
"author": "Niggler",
|
|
"description": "(one day) a full-featured XLSX parser and writer. For now, primitive parser",
|
|
"keywords": [
|
|
"xlsx", "office", "excel", "spreadsheet"
|
|
],
|
|
"bin": {
|
|
"xlsx2csv": "./bin/xlsx2csv.njs"
|
|
},
|
|
"main": "./xlsx",
|
|
"dependencies": {
|
|
"codepage":"",
|
|
"commander":""
|
|
},
|
|
"devDependencies": {
|
|
"mocha":"",
|
|
"jasmine-node": "x"
|
|
},
|
|
"repository": {
|
|
"type":"git",
|
|
"url": "git://github.com/Niggler/js-xlsx.git"
|
|
},
|
|
"scripts": {
|
|
"pretest": "git submodule init && git submodule update",
|
|
"test": "make mocha",
|
|
"test-jasmine": "jasmine-node --verbose tests/"
|
|
},
|
|
"bugs": { "url": "https://github.com/Niggler/js-xlsx/issues" },
|
|
"license": "Apache-2.0",
|
|
"engines": { "node": ">=0.6" }
|
|
}
|