-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 995 Bytes
/
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
{
"name": "secrets-env",
"version": "0.1.0",
"description": "Import AWS Secrets Manager values as environment variables",
"main": "index.js",
"repository": "git@github.com:comicrelief/secrets-env.git",
"author": "Comic Relief",
"license": "MIT",
"scripts": {
"build": "tsc",
"cli": "ts-node src/cli.ts",
"lint": "yarn eslint .",
"test:unit": "jest --colors",
"test:unit:coverage": "JEST_COLLECT_COVERAGE=1 jest --colors"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/sinon": "^9.0.5",
"@types/yargs": "^15.0.7",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"aws-sdk": "^2.760.0",
"eslint": "^7.9.0",
"jest": "^26.4.2",
"semantic-release": "^17.1.2",
"sinon": "^9.0.3",
"ts-jest": "^26.3.0",
"typescript": "^4.0.3"
},
"peerDependencies": {
"aws-sdk": "^2.760.0"
},
"dependencies": {
"yargs": "^16.0.3"
}
}