-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.54 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.54 KB
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
{
"name": "@amzn/feedback-management",
"version": "3.0.5",
"description": "This lambda supports backs the API to process chat response feedbacks",
"main": "index.ts",
"scripts": {
"test": "jest --coverage --silent --verbose",
"test:debug": "jest --coverage",
"test:no-cov": "jest --no-coverage --verbose",
"build": "npx tsc",
"clean": "rm -rf node_modules",
"clean-dev": "rm -rf node_modules && npm i --omit=dev",
"code-linter-js": "./node_modules/eslint/bin/eslint.js lambda --ext .js",
"code-linter-ts": "./node_modules/eslint/bin/eslint.js bin lib --ext .ts",
"code-linter": "npm run code-linter-ts && npm run code-linter-js",
"code-formatter": "./node_modules/prettier/bin-prettier.js --config .prettierrc.yml '**/*.ts' '**/*.js' --write"
},
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com/solutions"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.1",
"@types/node-cache": "^4.2.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"aws-sdk-client-mock": "^4.1.0",
"aws-sdk-client-mock-jest": "^4.1.0",
"eslint": "^9.16.0",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"jsonpath-plus": "^10.3.0",
"node-cache": "^5.1.2",
"uuid": "^11.0.5"
}
}