-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
96 lines (96 loc) · 2.34 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
{
"name": "serverless-es-logs",
"version": "3.5.0",
"license": "MIT",
"description": "A Serverless plugin to transport logs to ElasticSearch",
"author": "Daniel Cottone <[email protected]> (https://github.com/daniel-cottone)",
"repository": {
"type": "git",
"url": "git+https://github.com/daniel-cottone/serverless-es-logs.git"
},
"bugs": {
"url": "https://github.com/daniel-cottone/serverless-es-logs/issues"
},
"homepage": "https://github.com/daniel-cottone/serverless-es-logs",
"engines": {
"node": ">=10.0"
},
"main": "dist/index.js",
"files": [
"dist",
"templates"
],
"scripts": {
"compile": "tsc",
"compile:clean": "rimraf dist",
"compile:watch": "tsc -w",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"integration": "./scripts/integration-test.sh",
"lint": "tslint --project . --format stylish",
"prepublish": "yarn compile:clean && yarn compile",
"release": "semantic-release",
"test": "nyc mocha"
},
"keywords": [
"aws",
"lambda",
"aws lambda",
"amazon web services",
"api gateway",
"serverless",
"plugin",
"serverless plugin",
"elasticsearch",
"es",
"cloudwatch",
"cw",
"log",
"logs",
"logging"
],
"release": {
"debug": true,
"noCi": true,
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
]
},
"dependencies": {
"fs-extra": "9.0.0",
"lodash": "4.17.21"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.2.1",
"@types/chai": "4.2.16",
"@types/faker": "5.5.1",
"@types/fs-extra": "8.1.1",
"@types/lodash": "4.14.168",
"@types/mocha": "8.2.2",
"@types/node": "10.17.56",
"@types/sinon": "10.0.0",
"chai": "4.3.4",
"coveralls": "3.1.0",
"faker": "5.5.3",
"mocha": "8.3.2",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"semantic-release": "17.4.2",
"sinon": "10.0.0",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"typescript": "4.2.4"
}
}