-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
86 lines (86 loc) · 2.55 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
{
"name": "@honeybadger-io/js",
"version": "6.10.1",
"license": "MIT",
"homepage": "https://github.com/honeybadger-io/honeybadger-js/tree/master/packages/js",
"author": {
"name": "Joshua Wood",
"email": "[email protected]"
},
"description": "Universal (Browser & Node) JavaScript error notifier for Honeybadger.io",
"keywords": [
"exception",
"error",
"honeybadger",
"javascript",
"node",
"browser",
"monitoring",
"isomorphic",
"universal"
],
"main": "./dist/server/honeybadger.js",
"browser": "./dist/browser/honeybadger.js",
"repository": {
"type": "git",
"url": "[email protected]:honeybadger-io/honeybadger-js.git"
},
"bugs": {
"url": "https://github.com/honeybadger-io/honeybadger-js/issues"
},
"types": "./honeybadger.d.ts",
"files": [
"./dist",
"./honeybadger.d.ts",
"./scripts/check-ins-sync-bin.js"
],
"tsd": {
"compilerOptions": {
"strict": false
}
},
"bin": {
"honeybadger-checkins-sync": "scripts/check-ins-sync-bin.js"
},
"scripts": {
"build": "tsc --build tsconfig.json && rollup -c && rollup -c rollup.scripts.config.js && node ./scripts/copy-typedefs.js && node ./scripts/generate-feedback-form-assets.js",
"test": "npm run test:browser && npm run test:server && npm run tsd",
"test:browser": "jest --env=jsdom --setupFiles=\"<rootDir>/test/unit/jest-browser-setup.js\" --testPathPattern=\"test/unit/.*(?<![\\./]server)\\.test\\.(js|ts)\"",
"test:server": "jest --env=node --testPathPattern=\"test/unit/.*(?<![\\./]browser)\\.test\\.(js|ts)\"",
"test:integration": "npx playwright test --config test/e2e/playwright.config.ts",
"tsd": "tsd",
"postpublish": "./scripts/release-cdn.sh"
},
"dependencies": {
"@honeybadger-io/core": "^6.6.0",
"@types/aws-lambda": "^8.10.89",
"@types/express": "^4.17.13"
},
"devDependencies": {
"@playwright/test": "1.48.0",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^5.0.2",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.45",
"browserstack-local": "^1.5.5",
"express": "^4.17.1",
"jest": "^27.4.4",
"jest-fetch-mock": "^3.0.3",
"nock": "^13.2.1",
"rollup": "^2.77.0",
"rollup-plugin-strip-code": "^0.2.7",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^14.0.0",
"supertest": "^6.1.6",
"ts-jest": "^27.1.5",
"tsd": "^0.22.0",
"typescript": "^4.5.3"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14"
}
}