-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1001 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1001 Bytes
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
{
"name": "@alpha-lambda/log-me-gently",
"version": "1.1.0",
"engines": {
"node": ">=8.10"
},
"description": "Logging util that looks for logger in the context and logs at the specified level",
"repository": {
"type": "git",
"url": "https://github.com/alpha-lambda/log-me-gently.git"
},
"keywords": [
"aws",
"aws lambda",
"function",
"lambda",
"serverless",
"log",
"logger",
"alpha",
"helper",
"util"
],
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "nyc --reporter=lcov --reporter=text mocha",
"posttest": "npm run lint"
},
"author": {
"name": "Anton Bazhal",
"email": "am.bazhal@gmail.com",
"url": "https://github.com/AntonBazhal"
},
"license": "MIT",
"devDependencies": {
"@alpha-lambda/eslint-config": "^1.1.0",
"chai": "^4.3.4",
"eslint": "^7.31.0",
"eslint-plugin-mocha": "^9.0.0",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"sinon": "^11.1.2"
}
}