summaryrefslogtreecommitdiffstats
path: root/src/arrow/js/package.json
blob: 2c4160f5865badc62bee90be27cb2f39369fe9d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
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"
}