-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.31 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
{
"name": "@testboxlab/browser",
"version": "0.0.1-beta",
"description": "Integration SDK to allow your web app to work with TestBox",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"test": "npm run build && cypress",
"dev": "webpack serve --mode development --config ./webpack.config.js",
"build": "tsc && esbuild --bundle --minify --outfile=static/cdn.js cypress/cdn.test.ts",
"prepare": "husky install",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TestBoxLab/browser-sdk.git"
},
"author": "Pedals <dev@testbox.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TestBoxLab/browser-sdk/issues"
},
"homepage": "https://github.com/TestBoxLab/browser-sdk#readme",
"devDependencies": {
"@commitlint/config-conventional": "^17.3.0",
"commitlint": "^17.3.0",
"cypress": "^15.21.1",
"esbuild": "^0.28.2",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.0",
"npm-dts": "^1.1.6",
"prettier": "^2.7.1",
"semantic-release": "^25.0.3",
"swc-loader": "^0.2.6",
"tar": ">=7.5.21 < 7.6.0",
"tmp": ">=0.2.4 < 0.3.0",
"typescript": "^4.8.4",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.6"
},
"publishConfig": {
"access": "public"
},
"script": [],
"//": [
"Overrides patch advisories in transitive devDependencies that Dependabot cannot",
"reach directly. 'ws', 'http-proxy-middleware' and 'uuid' come via webpack-dev-server",
"(v6 would drop them but requires Node >=22), 'ip-address' via npm's socks chain,",
"'qs' via express/@cypress/request. The 'npm' override exists because npm bundles",
"'tar' via bundleDependencies (unreachable by overrides); npm >=11.19.1 ships a fixed",
"tar internally. Safe to drop an override once the parent dep resolves a patched",
"version on its own."
],
"overrides": {
"qs": ">=6.15.2 <7.0.0",
"ws": ">=8.21.0 <9.0.0",
"uuid": ">=11.1.1 <12.0.0",
"ip-address": ">=10.3.1 <11.0.0",
"http-proxy-middleware": ">=2.0.10 <3.0.0",
"npm-dts": {
"tmp": "$tmp"
},
"npm": ">=11.19.1 <12.0.0",
"picomatch": ">=4.0.4 <5.0.0"
}
}