-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
97 lines (97 loc) · 2.63 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "sentry-testkit",
"version": "5.0.9",
"description": "Sentry Testkit enables Sentry to work natively in your application while running tests. The report is not really sent but rather logged locally into memory. In this way, the logged reports can be fetched for your own verification or any other purpose in your local development environment.",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.json",
"lint": "eslint --ext .js,.ts --fix",
"prepare": "npm run-script build",
"release": "standard-version"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "[email protected]:zivl/sentry-testkit.git"
},
"keywords": [
"raven-test-kit",
"raven",
"sentry",
"sentry-io",
"raven-js",
"raven-node",
"sentry-testkit",
"error-reporting",
"error-monitoring",
"sentry-error-handler",
"sentry-plugin",
"sentry-client"
],
"author": "Ziv Levy ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/zivl/sentry-testkit/issues"
},
"homepage": "https://zivl.github.io/sentry-testkit",
"dependencies": {
"body-parser": "^1.20.1",
"express": "^4.19.2"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@sentry/browser": "^7.77.0",
"@sentry/node": "^7.77.0",
"@sentry/react": "^7.77.0",
"@sentry/tracing": "^7.77.0",
"@sentry/types": "^7.77.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.14",
"@types/jest": "^29.5.8",
"@types/nock": "^10.0.0",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"babel-jest": "^29.7.0",
"docsify-cli": "^4.4.3",
"eslint": "^8.0.1",
"eslint-plugin-prettier": "^3.4.1",
"execa": "^3.4.0",
"husky": "^4.3.8",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^10.5.4",
"nock": "^10.0.6",
"node-fetch": "^2.6.7",
"prettier": "^1.19.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"standard-version": "^9.3.1",
"typescript": "^4.8.4",
"wait-for-expect": "^1.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}