-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
96 lines (96 loc) · 2.48 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "nestjs-param-store",
"version": "1.3.1",
"description": "Configure your NestJS application with AWS Parameter Store",
"author": "Alberto Menendez Romero <[email protected]>",
"keywords": [
"nestjs",
"nest.js",
"parameter store",
"parameter-store",
"ssm",
"config",
"configuration",
"aws",
"amazon web services"
],
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"engines": {
"node": ">= 16"
},
"repository": {
"type": "git",
"url": "https://github.com/albertomr86/nestjs-param-store.git"
},
"bugs": {
"url": "https://github.com/albertomr86/nestjs-param-store/issues"
},
"homepage": "https://github.com/albertomr86/nestjs-param-store/issues#readme",
"scripts": {
"lint": "eslint \"lib/**/*.ts\"",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"format": "prettier --write \"lib/**/*.ts\"",
"test": "jest --verbose -i --detectOpenHandles --coverage"
},
"devDependencies": {
"@nestjs/cli": "^10.0.0",
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/express": "^4.17.18",
"@types/jest": "28.1.4",
"@types/node": "^16.18.54",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"aws-sdk-client-mock": "^3.0.0",
"aws-sdk-client-mock-jest": "^3.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "28.1.2",
"prettier": "^2.8.8",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"rxjs": "^7.8.1",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "28.0.5",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "4.2.0",
"tslint": "^6.1.3",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@aws-sdk/client-ssm": "^3.418.0",
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "lib",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}