-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
65 lines (65 loc) · 1.41 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "lambda-log",
"version": "3.1.0",
"description": "Lightweight logging library for any Node 10+ applications",
"main": "index.js",
"scripts": {
"test": "jest",
"prepare": "is-ci || husky install",
"lint": "eslint index.js index.test.js \"lib/*.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/KyleRoss/node-lambda-log.git"
},
"keywords": [
"json",
"lambda",
"aws",
"log",
"logger",
"logging",
"console",
"wrap",
"wrapper",
"node",
"error",
"warn",
"info",
"debug",
"message",
"assert",
"ec2",
"ecs",
"cloudwatch",
"logs",
"function",
"cloud"
],
"author": "Kyle Ross <thejavascriptguy@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/KyleRoss/node-lambda-log/issues"
},
"homepage": "https://lambdalog.dev",
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"eslint": "^7.23.0",
"eslint-config-xo-space": "^0.30.0",
"eslint-plugin-jsdoc": "^36.1.1",
"eslint-plugin-node": "^11.1.0",
"husky": "^7.0.2",
"is-ci": "^3.0.0",
"jest": "^27.2.5",
"semantic-release": "^18.0.0"
},
"dependencies": {
"fast-safe-stringify": "^2.1.1"
}
}