-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 875 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 875 Bytes
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
{
"name": "@bugout/humbug",
"version": "0.0.5",
"description": "Humbug: Do you build developer tools? Humbug helps you know your users.",
"main": "lib/report.js",
"types": "lib/report.d.ts",
"scripts": {
"build": "tsc",
"test": "node lib/index.js",
"watch": "tsc -w",
"lint": "tslint --project ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/bugout-dev/humbug.git"
},
"files": [
"lib/*",
"src/*"
],
"keywords": [
"bugout",
"crash",
"reports"
],
"author": "Bugout.dev",
"license": "ISC",
"bugs": {
"url": "https://github.com/bugout-dev/humbug/issues"
},
"homepage": "https://github.com/bugout-dev/humbug#readme",
"dependencies": {
"axios": "^0.21.1",
"typescript": "^4.2.3"
},
"devDependencies": {
"@types/node": "^14.17.4",
"tslint": "^6.1.3"
}
}