1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- {
- "name": "xlsx",
- "version": "0.11.19",
- "author": "sheetjs",
- "description": "SheetJS Spreadsheet data parser and writer",
- "keywords": [
- "excel",
- "xls",
- "xlsx",
- "xlsb",
- "xlsm",
- "ods",
- "csv",
- "dbf",
- "dif",
- "sylk",
- "office",
- "spreadsheet"
- ],
- "bin": {
- "xlsx": "./bin/xlsx.njs"
- },
- "main": "./xlsx",
- "types": "types",
- "browser": {
- "buffer": false,
- "crypto": false,
- "stream": false,
- "process": false,
- "fs": false
- },
- "dependencies": {
- "adler-32": "~1.2.0",
- "cfb": "~1.0.2",
- "codepage": "~1.12.0",
- "commander": "~2.13.0",
- "crc-32": "~1.2.0",
- "exit-on-epipe": "~1.0.1",
- "ssf": "~0.10.1"
- },
- "devDependencies": {
- "@sheetjs/uglify-js": "~2.7.3",
- "@types/node": "^8.5.9",
- "blanket": "~1.2.3",
- "dtslint": "^0.1.2",
- "jsdom": "~11.1.0",
- "mocha": "~2.5.3",
- "typescript": "2.2.0"
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/SheetJS/js-xlsx.git"
- },
- "scripts": {
- "pretest": "git submodule init && git submodule update",
- "test": "make travis",
- "build": "make",
- "lint": "make fullint",
- "dtslint": "dtslint types"
- },
- "config": {
- "blanket": {
- "pattern": "xlsx.js"
- }
- },
- "alex": {
- "allow": [
- "wtf",
- "holes"
- ]
- },
- "homepage": "http://sheetjs.com/opensource",
- "bugs": {
- "url": "https://github.com/SheetJS/js-xlsx/issues"
- },
- "license": "Apache-2.0",
- "engines": {
- "node": ">=0.8"
- }
- }
|