-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
40 lines (40 loc) · 971 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
40
{
"name": "cloudwatch-metrics",
"version": "1.3.3",
"description": "A simple wrapper for simplifying using Cloudwatch metrics",
"main": "index.js",
"scripts": {
"ci": "npm run lint && npm test",
"test": "jasmine",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixmaxhq/cloudwatch-metrics.git"
},
"keywords": [
"aws",
"cloudwatch",
"metrics"
],
"author": "Trey Tacon <[email protected]> (https://mixmax.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixmaxhq/cloudwatch-metrics/issues"
},
"homepage": "https://github.com/mixmaxhq/cloudwatch-metrics#readme",
"dependencies": {
"@aws-sdk/client-cloudwatch": "^3.332.0"
},
"devDependencies": {
"eslint": ">=3",
"eslint-config-mixmax": "^0.6.0",
"jasmine": "^2.99.0",
"pre-commit": "^1.2.2",
"rewire": "^2.5.2",
"underscore": "^1.8.3"
},
"pre-commit": [
"lint"
]
}