-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 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
{
"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": [],
"overrides": {
"qs": ">=6.14.2 <6.15.0",
"npm-dts": {
"tmp": "$tmp"
}
}
}