forked from thiagobbt/nx-remotecache-s3
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "nx-remotecache-s3",
"version": "1.2.2",
"description": "Remote caching for @nrwl/nx using Amazon S3",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thiagobbt/nx-remotecache-s3.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/thiagobbt/nx-remotecache-s3/issues"
},
"homepage": "https://github.com/thiagobbt/nx-remotecache-s3#readme",
"devDependencies": {
"@aws-sdk/types": "^3.1.0",
"@nrwl/workspace": "^10.2.1",
"@types/node": "^14.14.17",
"@types/yargs": "^15.0.7",
"typescript": "^4.0.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.6.1",
"@aws-sdk/credential-provider-env": "^3.6.1",
"@aws-sdk/credential-provider-ini": "^3.6.1",
"@types/mkdirp": "^1.0.1",
"get-stream": "^6.0.0",
"mkdirp": "^1.0.4"
},
"peerDependencies": {
"@nrwl/workspace": ">=9.2.2"
},
"files": [
"index.js",
"lifecycle.json"
]
}