js-cfb/package.json

69 lines
1.3 KiB
JSON

{
"name": "cfb",
"version": "1.1.0",
"author": "sheetjs",
"description": "Compound File Binary File Format extractor",
"keywords": [
"cfb",
"compression",
"office"
],
"bin": {
"cfb": "./bin/cfb.njs"
},
"main": "./cfb",
"types": "types",
"browser": {
"node": false,
"process": false,
"fs": false
},
"dependencies": {
"adler-32": "~1.2.0",
"commander": "^2.16.0",
"crc-32": "~1.2.0",
"printj": "~1.1.2"
},
"devDependencies": {
"@sheetjs/uglify-js": "~2.7.3",
"@types/commander": "^2.9.0",
"@types/node": "^8.10.25",
"blanket": "~1.2.3",
"dtslint": "~0.1.2",
"mocha": "~2.5.3",
"typescript": "2.2.0"
},
"repository": {
"type": "git",
"url": "git://github.com/SheetJS/js-cfb.git"
},
"scripts": {
"pretest": "make init",
"test": "make test",
"dtslint": "dtslint types"
},
"config": {
"blanket": {
"pattern": "cfb.js"
}
},
"files": [
"LICENSE",
"README.md",
"bin/",
"dist/",
"types/index.d.ts",
"types/tsconfig.json",
"cfb.js",
"xlscfb.flow.js"
],
"homepage": "http://sheetjs.com/opensource",
"bugs": {
"url": "https://github.com/SheetJS/js-cfb/issues"
},
"license": "Apache-2.0",
"engines": {
"node": ">=0.8"
}
}