-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
39 lines (39 loc) · 970 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
38
39
{
"name": "aws-secretsmanager-emulator",
"version": "0.4.1",
"description": "Emulator for AWS Secrets Manager",
"main": "main/index.js",
"author": "Patrick Boisen <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"@hapi/hapi": "^20.2.1",
"@hapi/hoek": "^9.2.1",
"@hapi/inert": "^6.0.4",
"@hapi/vision": "^6.1.0",
"hapi-pino": "^9.1.0",
"make-promises-safe": "^1.1.0",
"mustache": "^2.3.0",
"nconf": "^0.11.3",
"pino-pretty": "^7.3.0"
},
"devDependencies": {
"eslint": "^8.5.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-node": "^11.1.0",
"hapi-test-utils": "^1.0.0",
"jest": "^23.0.1",
"unexpected": "^12.0.3"
},
"scripts": {
"lint": "eslint .",
"start": "node main/index.js",
"test": "jest --runInBand"
},
"engines": {
"node": ">=16.13.1 < 17"
},
"jest": {
"setupTestFrameworkScriptFile": "./integration-tests/setup.js"
}
}