diff options
Diffstat (limited to 'src/arrow/js/package.json')
-rw-r--r-- | src/arrow/js/package.json | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/src/arrow/js/package.json b/src/arrow/js/package.json new file mode 100644 index 000000000..2c4160f58 --- /dev/null +++ b/src/arrow/js/package.json @@ -0,0 +1,105 @@ +{ + "name": "apache-arrow", + "description": "Apache Arrow columnar in-memory format", + "bin": { + "arrow2csv": "bin/arrow2csv.js" + }, + "scripts": { + "lerna": "lerna", + "test": "cross-env NODE_NO_WARNINGS=1 gulp test", + "build": "cross-env NODE_NO_WARNINGS=1 gulp build", + "clean": "cross-env NODE_NO_WARNINGS=1 gulp clean", + "debug": "cross-env NODE_NO_WARNINGS=1 gulp debug", + "perf": "ts-node-transpile-only ./perf/index.ts", + "test:integration": "node ./bin/integration.js --mode validate", + "release": "./npm-release.sh", + "clean:all": "run-p clean clean:testdata", + "clean:testdata": "gulp clean:testdata", + "create:testdata": "gulp create:testdata", + "test:coverage": "gulp test -t src --coverage", + "doc": "del-cli ./doc && typedoc --options typedoc.js", + "lint": "eslint src test --fix", + "lint:ci": "eslint src test", + "prepublishOnly": "echo \"Error: do 'yarn release' instead of 'npm publish'\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/apache/arrow.git" + }, + "keywords": [ + "apache", + "arrow" + ], + "author": "Apache Software Foundation", + "license": "Apache-2.0", + "bugs": { + "url": "https://issues.apache.org/jira/projects/ARROW" + }, + "homepage": "https://github.com/apache/arrow/blob/master/js/README.md", + "files": [ + "bin", + "src", + "gulp", + "jestconfigs", + "test", + "*.json", + "tsconfigs", + "README.md", + "gulpfile.js", + "npm-release.sh", + "jest.config.js" + ], + "dependencies": { + "@types/flatbuffers": "^1.10.0", + "@types/node": "^16.4.0", + "command-line-args": "5.1.3", + "command-line-usage": "6.1.1", + "flatbuffers": "1.12.0", + "json-bignum": "^0.0.3", + "pad-left": "^2.1.0", + "tslib": "^2.3.0" + }, + "devDependencies": { + "@openpgp/web-stream-tools": "0.0.6", + "@types/glob": "7.1.4", + "@types/jest": "26.0.24", + "@types/randomatic": "3.1.2", + "@typescript-eslint/eslint-plugin": "4.28.4", + "@typescript-eslint/parser": "4.28.4", + "async-done": "1.3.2", + "benny": "3.6.15", + "cpy": "8.1.2", + "cross-env": "7.0.3", + "del-cli": "4.0.1", + "eslint": "7.31.0", + "eslint-plugin-jest": "24.3.7", + "esm": "https://github.com/jsg2021/esm/releases/download/v3.x.x-pr883/esm-3.x.x-pr883.tgz", + "glob": "7.1.7", + "google-closure-compiler": "20210601.0.0", + "gulp": "4.0.2", + "gulp-json-transform": "0.4.7", + "gulp-rename": "2.0.0", + "gulp-sourcemaps": "3.0.0", + "gulp-typescript": "5.0.1", + "ix": "4.4.1", + "jest": "27.0.6", + "jest-silent-reporter": "0.5.0", + "lerna": "4.0.0", + "memfs": "3.2.2", + "mkdirp": "1.0.4", + "multistream": "4.1.0", + "npm-run-all": "4.1.5", + "randomatic": "3.1.1", + "rxjs": "7.2.0", + "ts-jest": "27.0.3", + "ts-node": "10.1.0", + "typedoc": "0.21.4", + "typescript": "4.0.2", + "web-streams-polyfill": "3.0.3", + "xml2js": "0.4.23" + }, + "engines": { + "node": ">=12.0" + }, + "version": "6.0.1" +} |