-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.81 KB
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
66
67
68
69
70
71
72
73
74
{
"name": "log-aws-lambda",
"version": "5.0.0",
"description": "AWS Lambda log generator for log engine",
"author": "Mariusz Nowak <medyk@medikoo.com> (http://www.medikoo.com/)",
"keywords": [
"aws",
"lambda",
"log",
"logger",
"debug",
"bunyan",
"winston"
],
"repository": "medikoo/log-aws-lambda.git",
"dependencies": {
"d": "^1.0.0",
"log-node": "^7.0.0",
"sprintf-kit": "^2.0.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-medikoo": "^2.1.1",
"essentials": "^1.0.0",
"git-list-updated": "^1.1.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"log": "^6.0.0",
"ncjsm": "^2.0.1",
"nyc": "^13.3.0",
"prettier-elastic": "^1.16.4",
"process-utils": "^2.0.1",
"tape": "^4.10.1",
"tape-index": "^3.1.0"
},
"peerDependencies": {
"log": "^6.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.{css,html,js,json,md,yaml,yml}": [
"prettier -c"
]
},
"eslintConfig": {
"extends": "medikoo",
"root": true,
"env": {
"node": true
},
"rules": {
"no-console": "off"
}
},
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=html --reporter=text-summary npm test",
"check-coverage": "npm run coverage && nyc check-coverage --statements 100 --function 100 --branches 50 --lines 100",
"lint": "eslint --ignore-path=.gitignore .",
"lint-updated": "pipe-git-updated --ext=js -- eslint --ignore-pattern '!*'",
"prettier-check-updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
"prettify": "prettier --write --ignore-path .gitignore '**/*.{css,html,js,json,md,yaml,yml}'",
"test": "npm run test-prepare && npm run test-run",
"test-prepare": "tape-index",
"test-run": "node test.index.js"
},
"license": "ISC"
}