-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.09 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "trackjs-node",
"version": "1.2.0",
"description": "TrackJS Error Tracking agent for NodeJS",
"keywords": [
"error-tracking",
"error-monitoring",
"error-reporting",
"error-handling",
"logging",
"javascript",
"nodejs",
"debugging",
"debugger",
"debugging-tool",
"error",
"trackjs",
"trackjs-node",
"trackjs-agent"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"fix": "prettier --write \"{src,test}/**/*.ts\"",
"lint": "prettier --check \"{src,test}/**/*.ts\"",
"start": "run-s test:watch",
"teamcity": "node ./tools/teamcity",
"test": "run-s test:jest test:express test:network test:require test:transmit",
"test:express": "node ./test/integration/express",
"test:network": "node ./test/integration/network",
"test:require": "node ./test/integration/require",
"test:transmit": "node ./test/integration/transmit",
"test:jest": "jest --forceExit",
"test:watch": "jest --watch",
"version": "node ./tools/version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TrackJs/TrackJS-Node.git"
},
"author": {
"name": "TrackJS",
"email": "[email protected]",
"url": "https://trackjs.com/"
},
"homepage": "https://trackjs.com/",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/TrackJs/TrackJS-Node/issues"
},
"files": [
"dist/**/*"
],
"devDependencies": {
"@types/jest": "29.5.6",
"@types/node": "18.18.2",
"axios": "1.5.1",
"express": "4.18.2",
"jest": "29.7.0",
"jest-teamcity-reporter": "0.9.0",
"npm-run-all": "4.1.5",
"prettier": "1.18.2",
"request": "2.88.0",
"rimraf": "2.6.3",
"simple-git": "1.116.0",
"ts-jest": "29.1.1",
"typescript": "4.8.4"
},
"jest": {
"testResultsProcessor": "jest-teamcity-reporter",
"roots": [
"<rootDir>/test",
"<rootDir>/src"
],
"transform": {
"^.+\\.ts$": "ts-jest"
}
}
}