-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.84 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
{
"name": "any-bucket",
"version": "0.0.0",
"description": "File storage abstraction layer",
"author": "Arnold Daniels <[email protected]>",
"repository": "[email protected]:ltonetwork/any-bucket.git",
"bugs": "https://github.com/ltonetwork/any-bucket/issues",
"license": "MIT",
"scripts": {
"clean": "rm -rf ./lib",
"build": "tsc",
"test": "mocha --require ts-node/register 'test/**/*.spec.ts'",
"lint": "eslint src --ext .ts,.tsx",
"lint-fix": "eslint src --ext .ts,.tsx --fix"
},
"main": "./lib/index.js",
"exports": {
".": {
"default": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./azure": {
"default": "./lib/azure.js",
"types": "./lib/azure.d.ts"
},
"./gcs": {
"default": "./lib/gcs.js",
"types": "./lib/gcs.d.ts"
},
"./local": {
"default": "./lib/local.js",
"types": "./lib/local.d.ts"
},
"./s3": {
"default": "./lib/s3.js",
"types": "./lib/s3.d.ts"
}
},
"files": [
"lib",
"src"
],
"devDependencies": {
"@aws-sdk/client-s3": "^3.363.0",
"@azure/storage-blob": "^12.14.0",
"@google-cloud/storage": "^6.11.0",
"@types/chai": "^4.3.5",
"@types/jsdom": "^20.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.3",
"@types/sinon": "^10.0.15",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.61.0",
"chai": "^4.3.7",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"mock-fs": "^5.2.0",
"prettier": "^2.8.8",
"sinon": "^15.2.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@aws-sdk/client-s3": "3.*",
"@azure/storage-blob": "12.*",
"@google-cloud/storage": "6.*"
}
}