forked from blackflux/lambda-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.31 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "lambda-monitor",
"version": "0.0.0-development",
"description": "Lambda log monitoring and streaming to external services.",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib",
"build": "npx babel src --out-dir lib --copy-files --include-dotfiles --config-file ./.babelrc",
"build-clean": "npm run clean && npm run build",
"test-simple": "nyc mocha \"./test/**/*.spec.js\"",
"test": "npm run clean && npm run gardener && npm run test-simple",
"coveralls": "node ./node_modules/coveralls/bin/coveralls.js < ./coverage/lcov.info",
"semantic-release": "npm run build-clean && npx semantic-release",
"gardener": "node gardener",
"docker": "docker run --net host -u`id -u`:`id -g` -v $(pwd):/user/project -v ~/.aws:/user/.aws -v ~/.npmrc:/user/.npmrc -w /user/project -it --entrypoint /bin/bash",
"t": "yarn test",
"ts": "yarn run test-simple",
"tsv": "yarn run test-simple --verbose",
"u": "yarn upgrade --latest --force",
"i": "yarn install --frozen-lockfile"
},
"repository": {
"type": "git",
"url": "https://github.com/blackflux/lambda-monitor.git"
},
"keywords": [
"aws",
"lambda",
"monitor",
"cloudwatch",
"rollbar",
"logz",
"loggly",
"logs",
"monitoring",
"alerts",
"timeouts"
],
"author": "Lukas Siemon",
"license": "MIT",
"bugs": {
"url": "https://github.com/blackflux/lambda-monitor/issues"
},
"homepage": "https://github.com/blackflux/lambda-monitor#readme",
"dependencies": {
"aws-sdk": "2.533.0",
"aws-sdk-wrap": "3.4.0",
"lambda-async": "1.0.2",
"lambda-cfn-hook": "1.2.1",
"lambda-monitor-logger": "2.2.1",
"lodash.get": "4.4.2",
"request": "2.88.0",
"request-promise": "4.2.4"
},
"devDependencies": {
"@babel/cli": "7.6.0",
"@babel/core": "7.6.0",
"@babel/plugin-proposal-object-rest-spread": "7.5.5",
"@babel/register": "7.6.0",
"@blackflux/eslint-plugin-rules": "1.3.12",
"@blackflux/robo-config-plugin": "2.6.9",
"babel-eslint": "10.0.3",
"chai": "4.2.0",
"coveralls": "3.0.6",
"eslint": "6.4.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-json": "1.4.0",
"eslint-plugin-markdown": "1.0.0",
"eslint-plugin-mocha": "6.1.1",
"js-gardener": "2.0.99",
"lambda-tdd": "2.10.13",
"mocha": "6.2.0",
"nock": "11.3.5",
"node-tdd": "2.5.11",
"nyc": "14.1.1",
"robo-config": "3.3.11",
"semantic-release": "15.13.24"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/blackflux/lambda-monitor/blob/master/LICENSE"
}
],
"engines": {
"node": ">= 8.10"
},
"files": [
"lib"
],
"peerDependencies": {},
"nyc": {
"tempDir": "./coverage/.nyc_output",
"report-dir": "./coverage",
"check-coverage": true,
"per-file": false,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"**/*.js"
],
"exclude": [
"gardener.js",
"node_modules/*",
"coverage/*",
"lib/*",
"src/plugin/tasks/**",
"test/projects/**"
],
"reporter": [
"lcov",
"text-summary"
],
"require": [
"@babel/register"
],
"extension": [],
"cache": true,
"all": true,
"babel": true
}
}