-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
83 lines (83 loc) · 2.01 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "winston-aws-cloudwatch",
"version": "3.0.0",
"description": "A Winston transport for Amazon CloudWatch.",
"keywords": [
"amazon",
"aws",
"cloudwatch",
"winston",
"log",
"logs",
"logging",
"cloud",
"saas"
],
"author": "Tim De Pauw <[email protected]> (https://tmdpw.eu/)",
"engines": {
"node": ">=8",
"yarn": ">=1.6.0"
},
"peerDependencies": {
"winston": "^3.0.0"
},
"dependencies": {
"aws-sdk": "^2.293.0",
"bottleneck": "^1.16.0",
"debug": "^3.1.0",
"lodash.isempty": "^4.2.1",
"winston-transport": "^4.2.0"
},
"devDependencies": {
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"coveralls": "^3.0.2",
"delay": "^3.0.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"nyc": "^12.0.2",
"prettier-standard": "^8.0.1",
"rimraf": "^2.6.1",
"sinon": "^6.1.5",
"sinon-chai": "^3.2.0",
"standard": "^10.0.0"
},
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"test": "yarn run test:lint && yarn run test:cover",
"test:lint": "standard '{lib,test}/**/*.js'",
"test:unit": "mocha 'test/lib/setup.js' 'test/**/*.spec.js'",
"test:cover": "nyc yarn run test:unit",
"test:ci": "yarn run test:lint && yarn run test:ci:cover && yarn run test:ci:report",
"test:ci:cover": "nyc mocha --reporter mocha-junit-reporter 'test/lib/setup.js' 'test/**/*.spec.js'",
"test:ci:report": "nyc report --reporter text-lcov | coveralls",
"format": "prettier-standard '{lib,test}/**/*.js'",
"precommit": "lint-staged"
},
"repository": "timdp/winston-aws-cloudwatch",
"bugs": "https://github.com/timdp/winston-aws-cloudwatch/issues",
"license": "MIT",
"standard": {
"globals": [
"describe",
"it",
"expect",
"before",
"after",
"beforeEach",
"afterEach",
"sinon"
]
},
"lint-staged": {
"*.js": [
"prettier-standard",
"git add"
]
}
}