-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.14 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
{
"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": "^13.15.0",
"esbuild": "^0.27.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.8 < 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.0.4"
},
"publishConfig": {
"access": "public"
},
"script": [],
"//": [
"The 'npm' and 'picomatch' overrides below patch GHSA-jr5w-wmq9-7g6c (picomatch <4.0.4)",
"which is bundled deep inside the 'npm' CLI tarball (npm bundles its own dependencies",
"via 'bundleDependencies', so Dependabot cannot reach it). Forcing npm to >=11.14.1",
"swaps in a tarball that ships picomatch 4.0.4 internally; the picomatch override covers",
"the remaining non-bundled copies elsewhere in the tree. Safe to remove once",
"@semantic-release/npm's lockfile no longer resolves to npm <11.14.1."
],
"overrides": {
"qs": ">=6.14.2 <6.15.0",
"npm-dts": {
"tmp": "$tmp"
},
"npm": ">=11.14.1 <12.0.0",
"picomatch": ">=4.0.4 <5.0.0"
}
}