-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.32 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
98
99
100
101
{
"name": "contactsnag",
"version": "10.0.0",
"description": "Bugsnag utilities for Contactlab's applications",
"main": "lib/index.js",
"module": "lib/es6/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"author": "Contactlab",
"license": "Apache-2.0",
"repository": "contactlab/contactsnag",
"bugs": {
"url": "https://github.com/contactlab/contactsnag/issues"
},
"homepage": "https://contactlab.github.io/contactsnag",
"engines": {
"node": ">=16.0",
"npm": ">=6.0"
},
"files": [
"lib"
],
"keywords": [
"contactlab",
"bugsnag",
"wrapper"
],
"scripts": {
"prepare": "husky install",
"check": "tsc --noEmit",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"pretest": "npm run check && npm run lint",
"test": "jest",
"prebuild": "rm -rf ./lib",
"build": "npm run build:cjs && npm run build:es6",
"build:cjs": "tsc -p ./tsconfig.build.json",
"build:es6": "tsc -p ./tsconfig.build-es6.json",
"prepublishOnly": "npm test && npm run build"
},
"peerDependencies": {
"fp-ts": "^2.8.0",
"io-ts": "^2.2.10"
},
"dependencies": {
"@bugsnag/js": "7.22.3",
"@types/webpack-bugsnag-plugins": "^1.4.0",
"tslib": "^2.0.0",
"webpack-bugsnag-plugins": "^1.6.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.5.7",
"eslint": "^8.4.1",
"eslint-config-contactlab": "^12.0.0",
"eslint-config-prettier": "^9.0.0",
"fp-ts": "^2.8.0",
"husky": "^8.0.0",
"io-ts": "^2.2.10",
"jest": "^29.5.0",
"lint-staged": "^15.0.1",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.0.0",
"typescript": "^5.1.3"
},
"jest": {
"automock": false,
"bail": true,
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"<rootDir>/test/bin/_data.ts",
"<rootDir>/node_modules/"
],
"coverageReporters": [
"text"
],
"moduleFileExtensions": [
"js",
"json",
"node",
"ts"
],
"preset": "ts-jest",
"roots": [
"<rootDir>/test/"
],
"testMatch": null,
"testRegex": "(\\.|/)spec\\.ts$",
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"diagnostics": true
}
]
}
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
}
}