forked from arabold/serverless-sentry-lib
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "serverless-sentry-lib",
"version": "1.1.2",
"description": "Serverless Sentry Lib - Automatically send errors and exceptions to Sentry (https://sentry.io)",
"main": "src/index.js",
"author": "Andre Rabold",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/arabold/serverless-sentry-lib.git"
},
"bugs": {
"url": "https://github.com/arabold/serverless-sentry-plugin/issues"
},
"homepage": "https://github.com/arabold/serverless-sentry-plugin",
"keywords": [
"serverless plugin sentry",
"serverless framework plugin",
"serverless applications",
"serverless plugins",
"api gateway",
"lambda",
"aws",
"aws lambda",
"amazon",
"amazon web services",
"serverless.com",
"sentry",
"getsentry.com"
],
"scripts": {
"test": "mocha src/*.test.js",
"lint": "eslint src/"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^5.4.0",
"mocha": "^5.2.0",
"sinon": "^6.0.1",
"sinon-chai": "^3.2.0"
},
"peerDependencies": {
"raven": "2.x"
}
}