-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
38 lines (38 loc) · 1019 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
{
"name": "aws-cloudwatch-log",
"version": "0.1.6",
"description": "Fast & Simple Logging to AWS CloudWatch",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint index.js --fix",
"push": "git push --follow-tags origin master && npm publish",
"rls": "standard-version --release-as",
"v": "node -e \"console.log(require('./package.json').version)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicolasdao/aws-cloudwatch-logger.git"
},
"keywords": [
"aws",
"cloudwatch",
"log",
"logger",
"logstream"
],
"author": "Nicolas Dao",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nicolasdao/aws-cloudwatch-logger/issues"
},
"homepage": "https://github.com/nicolasdao/aws-cloudwatch-logger#readme",
"dependencies": {
"aws4": "^1.6.0",
"axios": "^0.26.1"
},
"devDependencies": {
"eslint": "^4.13.1",
"standard-version": "^4.2.0"
}
}