-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.73 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
{
"name": "aws-cloudwatch-streams-clean",
"version": "1.0.0",
"description": "Manage AWS cloudwatch log streams",
"main": "index.js",
"scripts": {
"local": "node -e \"console.log(require('./index').handler({}));\"",
"indev": "node_modules/.bin/lambda-local -l index.js -h handler",
"test": "jest -c ./jest.config.js --coverage",
"build:install": "npm install --production",
"build:devinstall": "npm install --production",
"build:zip": "zip -X -r artifact.zip * -x 'package.json' -x 'test/*' -x '__tests__/*' -x 'package-lock.json' -x '*.md' -x '**/__tests__/*' -x '**/test/*' -x Makefile -x LICENSE -x 'examples/' -x jest.config.js",
"clean": "rm -f artifact.zip && rm -rf node_modules",
"package": "npm run clean && npm run build:install && npm run build:zip && mv artifact.zip aws-cloudwatch-streams-clean.zip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ik-serverless/aws-cloudwatch-streams-clean.git"
},
"keywords": [
"aws",
"cloudwatch",
"streams",
"clean",
"manage",
"costing"
],
"author": "Ivan Katliarchuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/ik-serverless/aws-managing-access-keys/issues"
},
"homepage": "https://github.com/ik-serverless/aws-managing-access-keys#readme",
"devDependencies": {
"aws-lambda": "^1.0.5",
"aws-sdk": "^2.518.0",
"chai": "^4.2.0",
"dirty-chai": "^2.0.1",
"env-cmd": "^9.0.3",
"jest": "^24.9.0",
"lambda-local": "^1.6.3"
},
"dependencies": {
"@dazn/lambda-powertools-logger": "^1.9.0",
"env-var": "^5.0.0"
}
}