This repository has been archived by the owner on Feb 2, 2024. It is now read-only.
forked from Fjandin/config-man
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.74 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
58
59
60
{
"name": "@pleo-io/config-man",
"version": "2.0.7",
"description": "Config manager",
"main": "dist/index.js",
"author": "René Bischoff <[email protected]> (https://github.com/fjandin)",
"homepage": "https://github.com/pleo-io/config-man",
"repository": {
"type": "git",
"url": "https://github.com/pleo-io/config-man.git"
},
"bugs": {
"url": "https://github.com/pleo-io/config-man/issues",
"email": "[email protected]"
},
"license": "MIT",
"private": false,
"scripts": {
"peer": "yarn add --peer --frozen-lockfile @aws-sdk/client-secrets-manager@^3.379.0 @aws-sdk/client-dynamodb@^3.379.0",
"lint": "eslint src --ext .ts,.js",
"lint:fix": "eslint src --ext .ts,.js --fix",
"typecheck": "tsc --noEmit",
"test": "jest",
"build": "rm -rf dist; tsc -p tsconfig.build.json"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.385.0",
"@aws-sdk/client-secrets-manager": "^3.385.0",
"flat": "^5.0.2",
"json5": "^2.2.0"
},
"devDependencies": {
"@types/flat": "^5.0.1",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.379.0",
"@aws-sdk/client-secrets-manager": "^3.379.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"files": [
"dist"
]
}