This repository was archived by the owner on Dec 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.35 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.35 KB
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
{
"name": "backtrace-node",
"version": "1.2.0",
"description": "Backtrace error reporting tool",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"/source",
"/lib"
],
"author": "Backtrace <team@backtrace.io>",
"keywords": [
"Error",
"Reporting",
"Diagnostic",
"Tool",
"Bug",
"Bugs",
"StackTrace"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:backtrace-labs/backtrace-node.git"
},
"scripts": {
"test": "NODE_ENV=test mocha --require ts-node/register -r ./tsconfig.json --project tsconfig.json test/**/*.ts",
"lint": "tslint -p ./tsconfig.json",
"format": "prettier --write \"source/**/*.ts\" \"source/**/*.js\"",
"build": "tsc"
},
"dependencies": {
"axios": "^0.21.1",
"form-data": "^2.3.3",
"json-stringify-safe": "^5.0.1",
"native-reg": "^0.3.5",
"source-scan": "~1.0.1",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/expect": "^1.20.4",
"@types/form-data": "^2.2.1",
"@types/json-stringify-safe": "^5.0.0",
"@types/mocha": "^5.2.6",
"@types/nock": "^11.1.0",
"@types/node": "^11.11.4",
"chai": "~4.2.0",
"mocha": "^8.4.0",
"nock": "^13.1.0",
"ts-node": "^8.0.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.4"
}
}