forked from zivl/sentry-testkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.57 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.57 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
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
{
"name": "sentry-testkit",
"version": "6.2.2",
"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": "git@github.com: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 (levi.ziv@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zivl/sentry-testkit/issues"
},
"homepage": "https://zivl.github.io/sentry-testkit",
"dependencies": {
"body-parser": "^1.20.3",
"express": "^4.21.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": "^9.3.0",
"@sentry/node": "^9.3.0",
"@sentry/react": "^9.3.0",
"@sentry/types": "^9.3.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@types/body-parser": "^1.19.5",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.8",
"@types/node-fetch": "^2.6.12",
"@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": "^14.0.1",
"node-fetch": "^2.7.0",
"prettier": "^1.19.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"standard-version": "^9.3.1",
"typescript": "^4.9.5",
"wait-for-expect": "^1.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}