-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.72 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
61
62
63
64
65
66
67
68
69
70
{
"name": "nestjs-parameter-store",
"description": "Use nestjs managed AWS Parameter Store",
"version": "1.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "esm/index.js",
"license": "MIT",
"engines": {
"node": ">=18",
"pnpm": "^8"
},
"scripts": {
"test": "jest",
"build": "rm -rf dist esm && tsc -p tsconfig.build.json && tsc -p tsconfig.esm.json",
"publish": "npm run build && npm publish"
},
"files": [
"dist",
"esm",
"src"
],
"peerDependencies": {
"@nestjs/common": "^9",
"@nestjs/core": "^9",
"@aws-sdk/client-ssm": "^3"
},
"devDependencies": {
"@nestjs/common": "^9",
"@nestjs/core": "^9",
"@nestjs/platform-fastify": "^9",
"@nestjs/testing": "^9",
"@types/jest": "^28.1.8",
"@types/node": "^16.18.6",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "~5.42.1",
"@typescript-eslint/parser": "~5.42.1",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^28.1.3",
"prettier": "^2.8.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.6.0",
"supertest": "^6.3.3",
"ts-jest": "^28.0.8",
"typescript": "~4.7.4"
},
"repository": {
"type": "git",
"url": "https://github.com/essential2189/nestjs-parameter-store"
},
"keywords": [
"nestjs",
"nest",
"aws",
"system manager",
"ssm",
"parameter store",
"param store"
],
"bugs": {
"url": "https://github.com/essential2189/nestjs-parameter-store/issues"
},
"homepage": "https://github.com/essential2189/nestjs-parameter-store",
"publishConfig": {
"access": "public"
}
}