-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.47 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
{
"name": "nvoy",
"version": "0.1.22",
"description": "Node.js implementation of an AWS metrics emitter.",
"main": "index.js",
"scripts": {
"lint": "eslint -f json -o eslint-report.json .",
"docs": "jsdoc ./src -r -d ./docs --verbose",
"test": "jest __tests__ --coverage",
"int-test": "cross-env AWS_PROFILE=personal AWS_REGION=us-east-1 NODE_ENV=development IS_DEBUG=true ORG=MyOrg jest __int_tests__ --coverage",
"service-metrics-emitter": "cross-env AWS_PROFILE=personal AWS_REGION=us-east-1 NODE_ENV=development IS_DEBUG=true EMITTER_BATCH_DELAY=60000 ORG=MyOrg nvoy-service-metrics-emitter",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthewbill/nvoy.git"
},
"author": "Matthew Bill",
"license": "MIT",
"homepage": "https://github.com/matthewbill/nvoy#readme",
"bugs": "https://github.com/matthewbill/nvoy/issues/",
"devDependencies": {
"cross-env": "5.2.0",
"eslint": "5.4.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"jest": "23.5.0",
"jsdoc": "3.5.5"
},
"dependencies": {
"aws-sdk": "2.300.0",
"conventional-changelog-cli": "2.0.5",
"mdb-build-tools": "0.1.1",
"winston": "3.0.0"
},
"keywords": [
"aws",
"cloudwatch",
"metrics",
"batch",
"emitter"
],
"bin": {
"nvoy-service-metrics-emitter": "./bin/service-metrics-emitter.js"
}
}