This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
106 lines (106 loc) · 2.82 KB
/
package.json
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
106
{
"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
}
}