-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.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
{
"license": "MIT",
"private": false,
"version": "0.8.0",
"name": "bug-hunter",
"main": "./out/index.js",
"types": "./out/index.d.ts",
"homepage": "https://bug-hunter.040203.xyz",
"description": "Simple yet powerful bugs & error reporting service for node applications",
"author": {
"name": "Rishabh Kumar",
"email": "rishabh.kumar.pro@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Node-Bug-Hunter/Bug-Hunter.git"
},
"exports": {
"default": "./out/index.js"
},
"keywords": [
"bug",
"bug hunter",
"bug finder",
"error reporting",
"nodejs bug catcher"
],
"scripts": {
"build": "tsc --build",
"deploy": "tsc --build && npm publish"
},
"files": [
"out/*.js",
"out/*.d.ts"
],
"devDependencies": {
"@types/he": "^1.2.0",
"@types/node": "^14.14.7",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"typescript": "^5.3.0"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
}
},
"dependencies": {
"ably": "^1.2.45",
"axios": "^1.5.0",
"he": "^1.2.0",
"node-netstat": "^1.8.0",
"readline": "^1.3.0",
"uuid": "^9.0.1"
}
}