-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 loc) · 2.3 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "logdna-s3",
"version": "2.1.4",
"description": "Lambda Function to Stream Logs from AWS S3 to LogDNA",
"main": "index.js",
"scripts": {
"docs": "config-doc lib/config.js > doc/env.md",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"tap": "tap",
"pretest": "npm run lint",
"pretest:ci": "npm run lint",
"test": "npm run tap",
"test:ci": "tools/test-ci.sh",
"package": "tools/package.sh",
"release": "semantic-release",
"release:dry": "npm run release -- --dry-run --no-ci --branches ${BRANCH_NAME:-master}"
},
"eslintConfig": {
"root": true,
"ignorePatterns": [
"node_modules/",
"coverage/"
],
"extends": [
"logdna"
],
"parserOptions": {
"ecmaVersion": 2019
}
},
"tap": {
"ts": false,
"jsx": false,
"browser": false,
"check-coverage": true,
"output-file": ".tap-output",
"timeout": 60,
"nyc-arg": [
"--all=true",
"--exclude=test/"
],
"coverage-report": [
"html",
"text",
"text-summary",
"json",
"json-summary"
],
"files": [
"test/integration",
"test/unit"
],
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
},
"dependencies": {
"@logdna/env-config": "^1.0.5",
"@logdna/logger": "^2.6.9",
"@logdna/stdlib": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^12.1.1",
"@semantic-release/github": "^7.2.1",
"@aws-sdk/client-s3": "^3.485.0",
"eslint": "^7.4.0",
"eslint-config-logdna": "^5.0.0",
"nock": "^13.0.11",
"semantic-release": "^17.4.2",
"semantic-release-config-logdna": "^1.1.1",
"tap": "^16.3.9",
"tap-parser": "^11.0.2",
"tap-xunit": "^2.4.1"
},
"keywords": [
"logdna",
"lambda",
"logs",
"logging",
"s3",
"nodejs",
"node",
"logdna.com",
"logger",
"javascript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/logdna/logdna-s3.git"
},
"author": {
"name": "LogDNA, Inc.",
"email": "[email protected]"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/logdna/logdna-s3/issues"
},
"homepage": "https://github.com/logdna/logdna-s3#readme"
}