-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
{
"name": "kodo-s3-adapter-sdk",
"version": "0.6.1",
"description": "Adapter for Kodo & S3 API",
"main": "dist/index.js",
"repository": "github.com/bachue/kodo-s3-adapter-sdk",
"author": "Rong Zhou",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"build:check": "tsc --noEmit",
"tsc": "tsc",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' mocha --timeout 600000 -b -r ts-node/register -j 1 test/**/*.ts"
},
"dependencies": {
"agentkeepalive": "^4.2.1",
"async-lock": "^1.2.4",
"aws-sdk": "^2.800.0",
"buffer-crc32": "^0.2.13",
"form-data": "^3.0.0",
"js-base64": "^3.6.0",
"js-md5": "^0.7.3",
"lockfile": "^1.0.4",
"object-hash": "^2.2.0",
"semaphore-promise": "^1.2.0",
"stream-buffers": "^3.0.2",
"stream-throttle": "^0.1.3",
"timestamp-nano": "^1.0.0",
"urllib": "^2.36.1"
},
"devDependencies": {
"@types/async-lock": "^1.1.2",
"@types/buffer-crc32": "^0.2.0",
"@types/chai": "^4.2.14",
"@types/js-md5": "^0.4.2",
"@types/lockfile": "^1.0.1",
"@types/md5": "^2.2.1",
"@types/mocha": "^8.0.4",
"@types/node": "^16.18.12",
"@types/object-hash": "^2.1.0",
"@types/stream-buffers": "^3.0.3",
"@types/stream-throttle": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"chai": "^4.2.0",
"eslint": "^8.1.0",
"md5": "^2.3.0",
"mocha": "^8.2.1",
"tempfile": "^3.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"publishConfig": {
"access": "public"
}
}