-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
{
"name": "@nimbella/storage",
"version": "0.0.7",
"description": "Nimbella Platform Storage providers implementations and interfaces types.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/nimbella/storage.git"
},
"keywords": [],
"author": "Nimbella Corporation",
"license": "Apache-2.0",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "jest",
"test:built": "TEST_BUILT_VERSION=true jest tests/index",
"lint": "eslint 'src/**/*.ts'",
"build": "tsc && node esbuild.config.js",
"prepack": "npm run build"
},
"files": [
"/lib",
"/LICENSE",
"/package.json",
"/src"
],
"types": "lib/index.d.ts",
"dependencies": {
"@aws-sdk/client-s3": "^3.13.0",
"@aws-sdk/s3-request-presigner": "^3.13.0",
"@google-cloud/storage": "5.8.5",
"@types/debug": "^4.1.5",
"debug": "^4.3.1",
"memory-streams": "^0.1.3"
},
"devDependencies": {
"@aws-sdk/types": "^3.12.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"esbuild": "^0.11.12",
"esbuild-node-externals": "^1.2.0",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
}
}