-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.77 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
{
"name": "@teknologi-umum/blob",
"version": "0.0.0",
"description": "Agnostic driver for managing object storage in Node.js",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"browser": "dist/index.iife.js",
"jsdelivr": "dist/index.iife.js",
"unpkg": "dist/index.iife.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json",
"./*": "./*"
},
"scripts": {
"test": "vitest run --coverage",
"lint": "eslint --fix --ignore-path .gitignore --ext .js,.ts .",
"build": "rollup -c"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/teknologi-umum/blob-js.git"
},
"keywords": [
"blob",
"object",
"agnostic",
"storage",
"aws",
"s3",
"gcs",
"azure",
"blob",
"filesystem"
],
"author": "Teknologi Umum <opensource@teknologiumum.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/teknologi-umum/blob-js/issues"
},
"homepage": "https://github.com/teknologi-umum/blob-js#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@teknologi-umum/eslint-config-typescript": "^0.0.10",
"@types/node": "^20.14.12",
"@vitest/coverage-v8": "^2.0.4",
"eslint": "^8.57.0",
"lorem-ipsum": "^2.0.8",
"rollup": "^4.22.4",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"vitest": "^2.0.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.645.0",
"@azure/storage-blob": "^12.24.0",
"@google-cloud/storage": "^6.11.0"
},
"directories": {
"lib": "./src",
"test": "./tests"
},
"engines": {
"node": ">=14"
},
"engineStrict": true
}