UNPKG

parquets

Version:

TypeScript implementation of the Parquet file format, based on parquet.js

107 lines (106 loc) 2.89 kB
{ "name": "parquets", "description": "TypeScript implementation of the Parquet file format, based on parquet.js", "version": "0.10.10", "upstream": "0.10.1", "homepage": "https://github.com/kbajalc/parquets", "author": "kbajalc@gmail.com", "license": "MIT", "browser": { "fs": false }, "main": "./lib/index.js", "types": "./lib/index.d.ts", "source": "./src/index.ts", "keywords": [ "dremel", "parquet" ], "repository": { "type": "git", "url": "git://github.com/kbajalc/parquets.git" }, "files": [ "lib", "src" ], "scripts": { "clean": "rm -rf ./lib && rm -rf ./build", "build": "npm run clean ; tsc -p src ; tsc -p .", "watch": "npm run clean ; tsc -p . --watch", "test": "npm run build && jest --verbose test/*.ts", "peer": "npm i brotli lzo lz4js --no-save", "upver": "npm version patch && git push --follow-tags", "release": "npm run build && git push --follow-tags && npm publish", "beta": "npm run build && git push --follow-tags && npm publish --tag beta", "tsgen": "thrift-typescript --target apache --rootDir . --sourceDir . --outDir codegen parquet.thrift", "tsgencore": "thrift-typescript --target thrift-server --rootDir . --sourceDir . --outDir codegen parquet.thrift", "thrift": "thrift --gen js:node parquet.thrift && thrift --gen js:ts parquet.thrift" }, "engines": { "node": ">=7.6" }, "dependencies": { "bson": "^4.0.2", "int53": "^1.0.0", "node-int64": "^0.4.0", "thrift": "^0.12.0", "varint": "^5.0.0" }, "runtimeDependencies": { "brotli": "^1.3.2", "lzo": "^0.4.0", "lz4js": "^0.2.0" }, "devDependencies": { "@creditkarma/thrift-typescript": "^3.7.2", "@types/bson": "^4.0.0", "@types/chai": "^4.1.7", "@types/debug": "^4.1.4", "@types/jest": "^24.0.17", "@types/mocha": "^5.2.7", "@types/node": "^10.14.15", "@types/node-int64": "^0.4.29", "@types/thrift": "^0.10.8", "@types/varint": "^5.0.0", "assert": "^2.0.0", "brotli": "^1.3.2", "chai": "^4.2.0", "debug": "^4.1.1", "jest": "^24.8.0", "jest-environment-node": "^24.8.0", "lz4js": "^0.2.0", "lzo": "^0.4.11", "object-stream": "0.0.1", "prettier": "^2.1.2", "snappy": "^6.3.5", "ts-jest": "^24.0.2", "ts-node": "^8.3.0", "tslint": "^5.18.0", "tslint-config-airbnb": "^5.11.1", "typescript": "^3.5.3" }, "jest": { "testEnvironment": "node", "verbose": true, "transform": { "^.+\\.tsx?$": "ts-jest" }, "testRegex": "(test/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "testPathIgnorePatterns": [ "<rootDir>/build_" ], "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json", "node" ] }, "prettier": { "arrowParens": "avoid", "singleQuote": true } }