-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
67 lines (67 loc) · 2.06 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
{
"name": "serverless-log-forwarding",
"version": "4.0.0",
"description": "a serverless plugin to forward logs to given lambda function",
"keywords": [
"serverless",
"plugin",
"logs"
],
"homepage": "https://github.com/amplify-education/serverless-log-forwarding#readme",
"bugs": {
"url": "https://github.com/amplify-education/serverless-log-forwarding/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amplify-education/serverless-log-forwarding.git"
},
"license": "MIT",
"author": "Amplify Education",
"main": "dist/src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc --project .",
"integration-test": "nyc mocha -r ts-node/register --project tsconfig.json test/integration-tests/integration-tests.ts && nyc report --reporter=text-summary",
"lint": "eslint . --ext .ts",
"lint:fix": "npx npm run lint -- --fix",
"test": "nyc mocha -r ts-node/register --project tsconfig.json test/unit-tests/index-test.ts && nyc report --reporter=text-summary"
},
"dependencies": {
"underscore": "^1.13.7"
},
"devDependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.699.0",
"@aws-sdk/client-iam": "^3.699.0",
"@aws-sdk/client-lambda": "^3.699.0",
"@types/async-retry": "^1.4.9",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/randomstring": "^1.3.0",
"@types/serverless": "^3.12.23",
"@types/shelljs": "^0.8.15",
"@types/underscore": "^1.13.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"randomstring": "^1.3.0",
"serverless": "^4.4.12",
"shelljs": "^0.8.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"peerDependencies": {
"serverless": ">=3"
},
"engines": {
"node": ">=16"
}
}