forked from dvirtz/parquets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
146 lines (146 loc) · 3.69 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "@dvirtz/parquets",
"description": "TypeScript implementation of the Parquet file format, based on parquet.js",
"version": "0.0.0-development",
"upstream": "0.10.1",
"homepage": "https://github.com/kbajalc/parquets",
"author": "[email protected]",
"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": "https://github.com/dvirtz/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",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"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": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@creditkarma/thrift-typescript": "^3.7.2",
"@semantic-release/git": "^9.0.0",
"@types/bson": "^4.0.0",
"@types/chai": "^4.1.7",
"@types/debug": "^4.1.4",
"@types/jest": "^26.0.22",
"@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",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-environment-node": "^26.6.2",
"lz4js": "^0.2.0",
"lzo": "^0.4.11",
"object-stream": "0.0.1",
"prettier": "^2.1.2",
"semantic-release": "^17.4.2",
"snappy": "^6.3.5",
"ts-jest": "^26.5.4",
"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
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
2,
"always",
200
]
}
},
"release": {
"branches": [
{
"name": "master",
"prerelease": false
},
{
"name": "develop",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"publishConfig": {
"access": "public"
}
}