-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.7 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
{
"name": "@raygun.io/aws-lambda",
"version": "0.0.3",
"description": "Raygun Crash Reporting for AWS Lambda functions",
"main": "build/raygun.aws.js",
"types": "build/raygun.aws.d.ts",
"scripts": {
"//eslint": "performs static analysis over JS files and examples",
"eslint": "eslint --config eslint.config.mjs --fix test/*.js example/*.js",
"//tseslint": "performs static analysis over TS files and examples",
"tseslint": "eslint --config tseslint.config.mjs --fix lib/*.ts",
"//prettier": "performs code formatting over project files",
"prettier": "prettier --write lib/*.ts test/*.js",
"//prepare": "prepare project for distribution",
"prepare": "tsc",
"//test": "runs tests on main project",
"test": "tap --disable-coverage test/*_test.js"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@stylistic/eslint-plugin": "^2.0.0",
"@stylistic/eslint-plugin-ts": "^2.2.1",
"@types/node": "^22.5.1",
"eslint": "^9.11.1",
"eslint-plugin-tsdoc": "^0.4.0",
"express": "^4.19.2",
"http-terminator": "^3.2.0",
"prettier": "^3.3.2",
"tap": "^21.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.5.0"
},
"dependencies": {
"@types/aws-lambda": "^8.10.138",
"raygun": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MindscapeHQ/raygun4node-aws-lambda.git"
},
"keywords": [
"aws",
"lambda",
"function",
"raygun",
"crash",
"reporting"
],
"author": "Raygun",
"license": "MIT",
"bugs": {
"url": "https://github.com/MindscapeHQ/raygun4node-aws-lambda/issues"
},
"homepage": "https://github.com/MindscapeHQ/raygun4node-aws-lambda"
}