-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.92 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@alpha-lambda/cloudwatch-telemetry",
"version": "4.0.0",
"description": "Store custom CloudWatch metrics in a cost-effective way",
"main": "src/DatapointsCollector.js",
"scripts": {
"deploy": "./sls.js deploy",
"lint": "eslint .",
"package": "./sls.js package",
"posttest": "npm run lint",
"remove": "./sls.js remove",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "env-cmd -f test/.env --no-override nyc mocha --config test/unit/.mocharc.yml test/unit",
"test:integration": "env-cmd -f test/.env --no-override mocha --config test/integration/.mocharc.yml test/integration"
},
"keywords": [
"aws",
"function",
"lambda",
"serverless",
"cloudwatch",
"telemetry",
"alpha",
"metrics",
"util"
],
"repository": {
"type": "git",
"url": "https://github.com/alpha-lambda/cloudwatch-telemetry"
},
"author": {
"name": "Anton Bazhal",
"email": "am.bazhal@gmail.com",
"url": "https://github.com/AntonBazhal"
},
"license": "MIT",
"dependencies": {
"@alpha-lambda/handler": "^1.3.0",
"ajv": "^8.12.0",
"aws-sdk": "^2.1368.0",
"lodash.chunk": "^4.2.0",
"minimist": "^1.2.8",
"pino": "^8.11.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"env-cmd": "^10.1.0",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"lambda-tester": "^4.0.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"relcov": "^1.0.6",
"serverless": "^3.38.0",
"serverless-plugin-aws-alerts": "^1.7.5",
"serverless-plugin-common-excludes": "^4.0.0",
"serverless-plugin-include-dependencies": "^5.0.0",
"serverless-prune-plugin": "^2.0.2",
"sinon": "^15.0.4",
"uuid": "^9.0.0"
}
}