2012-12-04 19:27:20 +00:00
|
|
|
{
|
|
|
|
"name": "xlsx",
|
2017-08-19 23:06:34 +00:00
|
|
|
"version": "0.11.3",
|
2013-11-06 06:05:32 +00:00
|
|
|
"author": "sheetjs",
|
2017-05-17 04:23:36 +00:00
|
|
|
"description": "Excel (XLSB/XLSX/XLS/XML) ODS and other spreadsheet format (CSV/DIF/DBF/SYLK) parser and writer",
|
|
|
|
"keywords": [ "excel", "xls", "xlsx", "xlsb", "xlsm", "ods", "csv", "dbf", "dif", "sylk", "office", "spreadsheet" ],
|
2012-12-04 19:27:20 +00:00
|
|
|
"bin": {
|
2014-05-16 00:33:34 +00:00
|
|
|
"xlsx": "./bin/xlsx.njs"
|
2012-12-04 19:27:20 +00:00
|
|
|
},
|
|
|
|
"main": "./xlsx",
|
2017-05-13 23:30:01 +00:00
|
|
|
"types": "types",
|
2017-03-05 00:56:31 +00:00
|
|
|
"browser": {
|
|
|
|
"node": false,
|
|
|
|
"crypto": false,
|
2017-04-09 04:03:19 +00:00
|
|
|
"stream": false,
|
2017-04-30 16:27:03 +00:00
|
|
|
"process": false,
|
2017-03-10 01:09:18 +00:00
|
|
|
"fs": false
|
2017-03-05 00:56:31 +00:00
|
|
|
},
|
2013-10-30 19:26:07 +00:00
|
|
|
"dependencies": {
|
2017-07-26 08:35:28 +00:00
|
|
|
"exit-on-epipe":"~1.0.1",
|
2017-08-01 05:50:53 +00:00
|
|
|
"ssf":"~0.10.1",
|
2017-08-05 06:32:57 +00:00
|
|
|
"codepage":"~1.11.0",
|
2017-08-09 22:38:23 +00:00
|
|
|
"cfb":"~0.12.1",
|
2017-07-28 23:27:16 +00:00
|
|
|
"crc-32":"~1.1.0",
|
|
|
|
"adler-32":"~1.1.0",
|
2017-07-26 08:35:28 +00:00
|
|
|
"commander":"~2.11.0"
|
2012-12-04 19:27:20 +00:00
|
|
|
},
|
2013-05-17 17:55:18 +00:00
|
|
|
"devDependencies": {
|
2017-07-26 08:35:28 +00:00
|
|
|
"mocha":"~2.5.3",
|
|
|
|
"blanket": "~1.2.3",
|
2017-07-28 23:27:16 +00:00
|
|
|
"@sheetjs/uglify-js":"~2.7.3",
|
2017-07-26 08:35:28 +00:00
|
|
|
"@types/node":"^8.0.7",
|
2017-07-28 23:27:16 +00:00
|
|
|
"@types/commander":"^2.9.0",
|
2017-08-18 18:10:18 +00:00
|
|
|
"jsdom": "~11.1.0",
|
2017-05-13 23:30:01 +00:00
|
|
|
"dtslint": "^0.1.2",
|
2017-05-16 17:45:35 +00:00
|
|
|
"typescript": "2.2.0"
|
2013-05-17 17:55:18 +00:00
|
|
|
},
|
2013-11-12 16:29:53 +00:00
|
|
|
"repository": { "type":"git", "url":"git://github.com/SheetJS/js-xlsx.git" },
|
2013-05-17 17:55:18 +00:00
|
|
|
"scripts": {
|
2013-05-18 00:12:10 +00:00
|
|
|
"pretest": "git submodule init && git submodule update",
|
2017-05-13 23:30:01 +00:00
|
|
|
"test": "make travis",
|
|
|
|
"dtslint": "dtslint types"
|
2013-05-17 17:55:18 +00:00
|
|
|
},
|
2014-01-22 04:58:26 +00:00
|
|
|
"config": {
|
|
|
|
"blanket": {
|
|
|
|
"pattern": "xlsx.js"
|
|
|
|
}
|
|
|
|
},
|
2017-04-21 22:02:02 +00:00
|
|
|
"homepage": "http://sheetjs.com/opensource",
|
2013-11-06 06:05:32 +00:00
|
|
|
"bugs": { "url": "https://github.com/SheetJS/js-xlsx/issues" },
|
2013-10-30 19:26:07 +00:00
|
|
|
"license": "Apache-2.0",
|
2014-03-21 02:44:27 +00:00
|
|
|
"engines": { "node": ">=0.8" }
|
2012-12-04 19:27:20 +00:00
|
|
|
}
|