-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.1 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
{
"name": "barnard59-s3",
"version": "0.3.0",
"description": "S3 support for Linked Data pipelines",
"type": "module",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "c8 --reporter=lcov --reporter=text npm run test",
"build": "tsc"
},
"keywords": [
"barnard59",
"s3"
],
"repository": {
"type": "git",
"url": "git://github.com/zazuko/barnard59.git",
"directory": "packages/s3"
},
"author": "Zazuko GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/zazuko/barnard59/issues"
},
"homepage": "https://github.com/zazuko/barnard59#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.481.0",
"mkdirp": "^3.0.1"
},
"files": [
"index.js",
"manifest.ttl",
"lib",
"cmd"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@aws-sdk/util-stream-node": "^3.374.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.5",
"aws-sdk-client-mock": "^3.0.0",
"get-stream": "^8.0.1",
"rimraf": "^5.0.5"
},
"mocha": {
"loader": "ts-node/esm/transpile-only"
}
}