2013-09-05 18:55:36 +00:00
|
|
|
{
|
2014-07-05 16:22:11 +00:00
|
|
|
"name": "cfb",
|
2018-07-08 08:08:15 +00:00
|
|
|
"version": "1.0.8",
|
2014-07-05 16:22:11 +00:00
|
|
|
"author": "sheetjs",
|
|
|
|
"description": "Compound File Binary File Format extractor",
|
2017-11-27 05:41:39 +00:00
|
|
|
"keywords": [
|
|
|
|
"cfb",
|
|
|
|
"compression",
|
|
|
|
"office"
|
|
|
|
],
|
2014-07-05 16:22:11 +00:00
|
|
|
"bin": {
|
2014-11-03 05:51:23 +00:00
|
|
|
"cfb": "./bin/cfb.njs"
|
2014-07-05 16:22:11 +00:00
|
|
|
},
|
|
|
|
"main": "./cfb",
|
2017-07-28 17:53:08 +00:00
|
|
|
"types": "types",
|
|
|
|
"browser": {
|
|
|
|
"node": false,
|
|
|
|
"process": false,
|
|
|
|
"fs": false
|
|
|
|
},
|
2014-07-05 16:22:11 +00:00
|
|
|
"dependencies": {
|
2018-03-05 03:49:40 +00:00
|
|
|
"commander": "^2.14.1",
|
|
|
|
"printj": "~1.1.2"
|
2014-07-05 16:22:11 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-03-05 03:49:40 +00:00
|
|
|
"crc-32": "~1.2.0",
|
2017-11-27 05:41:39 +00:00
|
|
|
"mocha": "~2.5.3",
|
2017-07-28 17:53:08 +00:00
|
|
|
"blanket": "~1.2.3",
|
2017-11-27 05:41:39 +00:00
|
|
|
"@sheetjs/uglify-js": "~2.7.3",
|
2018-03-05 03:49:40 +00:00
|
|
|
"@types/node": "^8.5.9",
|
2017-11-27 05:41:39 +00:00
|
|
|
"@types/commander": "^2.9.0",
|
|
|
|
"dtslint": "~0.1.2",
|
2017-07-28 17:53:08 +00:00
|
|
|
"typescript": "2.2.0"
|
2014-07-05 16:22:11 +00:00
|
|
|
},
|
2017-11-27 05:41:39 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/SheetJS/js-cfb.git"
|
|
|
|
},
|
2014-07-05 16:22:11 +00:00
|
|
|
"scripts": {
|
|
|
|
"pretest": "make init",
|
2017-07-28 17:53:08 +00:00
|
|
|
"test": "make test",
|
|
|
|
"dtslint": "dtslint types"
|
2014-07-05 16:22:11 +00:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"blanket": {
|
|
|
|
"pattern": "cfb.js"
|
|
|
|
}
|
|
|
|
},
|
2017-11-27 05:41:39 +00:00
|
|
|
"files": [
|
|
|
|
"LICENSE",
|
|
|
|
"README.md",
|
|
|
|
"bin/",
|
|
|
|
"dist/",
|
|
|
|
"types/index.d.ts",
|
|
|
|
"types/tsconfig.json",
|
|
|
|
"cfb.js",
|
|
|
|
"xlscfb.flow.js"
|
|
|
|
],
|
2017-07-28 17:53:08 +00:00
|
|
|
"homepage": "http://sheetjs.com/opensource",
|
2017-11-27 05:41:39 +00:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/SheetJS/js-cfb/issues"
|
|
|
|
},
|
2014-07-05 16:22:11 +00:00
|
|
|
"license": "Apache-2.0",
|
2017-11-27 05:41:39 +00:00
|
|
|
"engines": {
|
|
|
|
"node": ">=0.8"
|
|
|
|
}
|
2013-09-05 18:55:36 +00:00
|
|
|
}
|