-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 861 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 861 Bytes
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
{
"name": "cloud-token-exchanger",
"version": "1.0.1",
"description": "A library to exchange provider tokens",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"/dist"
],
"publishConfig": {
"access": "public",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts"
},
"engines": {
"node": "14 || 16"
},
"scripts": {
"tsc": "tsc",
"test": "ts-node ./src/test.ts"
},
"author": "Roadie <engineering@roadie.io>",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/aws4": "^1.11.0",
"@types/node": "^16.11.9",
"@types/node-fetch": "^3.0.3",
"prettier": "^2.5.0",
"ts-node": "^10.4.0"
},
"dependencies": {
"aws4": "^1.11.0",
"node-fetch": "2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.2",
"winston": "^3.3.3"
}
}