xlsx-write-stream
Advanced tools
Comparing version 1.0.1 to 1.0.2-beta.0
export function getCellId(rowIndex: any, cellIndex: any): string; | ||
export function sanitize(text: any): any; | ||
export function sanitize(text: any): string; | ||
export function timeoutPromised(timeout: any): Promise<any>; | ||
@@ -4,0 +4,0 @@ export function getNumberFormat(n: any): 1 | 5 | 3 | 4 | 2; |
/** Class representing a XLSX Row transformation from array to Row. Also adds the necessary XLSX header and footer. */ | ||
export default class XLSXRowTransform { | ||
export default class XLSXRowTransform extends Transform { | ||
constructor(shouldFormat: any); | ||
@@ -12,2 +12,3 @@ rowCount: number; | ||
} | ||
import { Transform } from 'stream'; | ||
//# sourceMappingURL=XLSXRowTransform.d.ts.map |
/** Class representing a XLSX Transform Stream */ | ||
export default class XLSXTransformStream { | ||
export default class XLSXTransformStream extends Transform { | ||
/** | ||
@@ -20,3 +20,4 @@ * Create a new Stream | ||
} | ||
import XLSXRowTransform from "./XLSXRowTransform"; | ||
import { Transform } from 'stream'; | ||
import XLSXRowTransform from './XLSXRowTransform'; | ||
//# sourceMappingURL=XLSXTransformStream.d.ts.map |
135
package.json
{ | ||
"name": "xlsx-write-stream", | ||
"version": "1.0.1", | ||
"description": "XLSX stream writer", | ||
"main": "dist/index.js", | ||
"typings": "dist/index.d.ts", | ||
"keywords": [ | ||
"apify", | ||
"apifier", | ||
"xlsx", | ||
"stream" | ||
], | ||
"author": { | ||
"name": "Apify", | ||
"email": "support@apify.com", | ||
"url": "https://www.apify.com" | ||
}, | ||
"contributors": [ | ||
"Jaroslav Hejlek <jaroslav@apify.com>" | ||
], | ||
"license": "Apache-2.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/apify/xlsx-stream" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/apify/xlsx-stream" | ||
}, | ||
"homepage": "https://github.com/apify/xlsx-stream", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"start": "npm run build && node dist/index.js", | ||
"build": "npm run clean && tsc", | ||
"test": "npm run build && mocha --require babel-core/register --recursive", | ||
"test-cov": "npm run build && babel-node node_modules/isparta/bin/isparta cover --report html --report text node_modules/.bin/_mocha", | ||
"prepare": "npm run build", | ||
"clean": "rimraf dist", | ||
"lint": "eslint src test" | ||
}, | ||
"dependencies": { | ||
"archiver": "^5.3.0" | ||
}, | ||
"devDependencies": { | ||
"@apify/tsconfig": "^0.1.0", | ||
"rimraf": "^3.0.2", | ||
"glob": "^7.2.0", | ||
"typescript": "^4.5.4", | ||
"apify-jsdoc-template": "github:apify/apify-jsdoc-template", | ||
"babel-cli": "^6.18.0", | ||
"babel-core": "^6.26.0", | ||
"babel-eslint": "^8.0.1", | ||
"babel-preset-node8": "^1.2.0", | ||
"chai": "^4.1.2", | ||
"eslint": "^4.9.0", | ||
"eslint-config-airbnb-base": "^12.1.0", | ||
"eslint-plugin-import": "^2.8.0", | ||
"eslint-plugin-jsx-a11y": "6.0.2", | ||
"eslint-plugin-mocha": "^4.11.0", | ||
"eslint-plugin-promise": "^3.6.0", | ||
"eslint-plugin-react": "7.4.0", | ||
"isparta": "^4.0.0", | ||
"mocha": "^8.3.2", | ||
"sinon": "^4.0.1", | ||
"sinon-stub-promise": "^4.0.0", | ||
"unzipper": "^0.10.11" | ||
} | ||
"name": "xlsx-write-stream", | ||
"version": "1.0.2-beta.0", | ||
"description": "XLSX stream writer", | ||
"main": "dist/index.js", | ||
"typings": "dist/index.d.ts", | ||
"keywords": [ | ||
"apify", | ||
"apifier", | ||
"xlsx", | ||
"stream" | ||
], | ||
"author": { | ||
"name": "Apify", | ||
"email": "support@apify.com", | ||
"url": "https://www.apify.com" | ||
}, | ||
"contributors": [ | ||
"Jaroslav Hejlek <jaroslav@apify.com>" | ||
], | ||
"license": "Apache-2.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/apify/xlsx-stream" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/apify/xlsx-stream" | ||
}, | ||
"homepage": "https://github.com/apify/xlsx-stream", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"start": "npm run build && node dist/index.js", | ||
"build": "npm run clean && tsc", | ||
"test": "npm run build && mocha --require babel-core/register --recursive", | ||
"test-cov": "npm run build && babel-node node_modules/isparta/bin/isparta cover --report html --report text node_modules/.bin/_mocha", | ||
"prepare": "npm run build", | ||
"clean": "rimraf dist", | ||
"lint": "eslint src test" | ||
}, | ||
"dependencies": { | ||
"archiver": "^5.3.0" | ||
}, | ||
"devDependencies": { | ||
"@apify/tsconfig": "^0.1.0", | ||
"@types/node": "^18.15.3", | ||
"apify-jsdoc-template": "github:apify/apify-jsdoc-template", | ||
"babel-cli": "^6.18.0", | ||
"babel-core": "^6.26.0", | ||
"babel-eslint": "^8.0.1", | ||
"babel-preset-node8": "^1.2.0", | ||
"chai": "^4.1.2", | ||
"eslint": "^4.9.0", | ||
"eslint-config-airbnb-base": "^12.1.0", | ||
"eslint-plugin-import": "^2.8.0", | ||
"eslint-plugin-jsx-a11y": "6.0.2", | ||
"eslint-plugin-mocha": "^4.11.0", | ||
"eslint-plugin-promise": "^3.6.0", | ||
"eslint-plugin-react": "7.4.0", | ||
"glob": "^7.2.0", | ||
"isparta": "^4.0.0", | ||
"mocha": "^8.3.2", | ||
"rimraf": "^3.0.2", | ||
"sinon": "^4.0.1", | ||
"sinon-stub-promise": "^4.0.0", | ||
"typescript": "^5.4.5", | ||
"unzipper": "^0.10.11" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
76088
419
23
1