-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.61 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.61 KB
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
{
"name": "@wholebuzz/fs",
"version": "1.3.0",
"description": "File system interface abstraction with implementations for GCP GCS, AWS S3, Azure, SMB, and Local file systems.",
"keywords": [
"file",
"json",
"stream",
"aws",
"s3",
"azure",
"smb",
"gcp",
"gcs",
"gzip",
"json",
"parquet",
"tfrecord"
],
"author": "wholebuzz",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/wholebuzz/fs.git"
},
"types": "./lib/index.d.ts",
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc -b .",
"clean": "tsc -b . --clean",
"docs": "typedoc --disableOutputCheck && rm -rf docs/README.md && ./scripts/updateReadmeApiReference.sh",
"test": "jest --runInBand --ci --passWithNoTests",
"test:coverage": "jest --runInBand --ci --passWithNoTests --coverage --no-cache",
"lint": "tslint -c tslint.json --project .",
"fix": "yarn lint --fix",
"format": "yarn run prettier --config .prettierrc.js --write 'src/*.+(ts)'"
},
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"dependencies": {
"@types/through": "^0.0.30",
"JSONStream": "^1.3.5",
"ndjson": "^2.0.0",
"rimraf": "^3.0.2",
"sha.js": "^2.4.11",
"stream-json": "^1.7.3",
"tree-stream": "^1.1.1",
"uuid": "^8.1.0",
"yargs": "^17.1.1",
"zlib": "^1.0.5"
},
"devDependencies": {
"@azure/identity": "^2.0.0",
"@azure/storage-blob": "^12.8.0",
"@google-cloud/storage": "^5.8.1",
"@marsaud/smb2": "^0.18.0",
"@types/fs-ext": "^2.0.0",
"@types/glob": "^7.2.0",
"@types/jest": "^26.0.22",
"@types/ndjson": "^2.0.1",
"@types/node": "^13.13.5",
"@types/parquetjs": "^0.10.3",
"@types/rimraf": "^3.0.0",
"@types/sha.js": "^2.4.0",
"@types/stream-json": "^1.7.1",
"@types/uuid": "^8.0.0",
"athena-express": "^7.1.3",
"aws-sdk": "^2.975.0",
"axios": "^0.20.0",
"csv": "^6.0.4",
"fs-ext": "^2.0.0",
"glob": "^7.2.0",
"glob-stream": "^7.0.0",
"jest": "^26.6.3",
"mnemonist": "^0.39.0",
"parquetjs": "npm:@entitycs/parquetjs-micro",
"prettier": "^2.3.2",
"s3-stream-upload": "^2.0.2",
"tfrecord-stream": "^0.2.0",
"ts-jest": "^26.5.4",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"typedoc": "^0.20.35",
"typedoc-plugin-markdown": "^3.6.1",
"typescript": "4.2.4",
"typescript-tslint-plugin": "^1.0.1"
},
"nyc": {
"reporter": [
"cobertura",
"json",
"lcov",
"text"
]
}
}