-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"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": "^11.0.1",
"esbuild": "^0.15.13",
"husky": "^8.0.0",
"npm-dts": "^1.3.12",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"typescript": "^4.8.4",
"html-webpack-plugin": "^5.6.0",
"swc-loader": "^0.2.6",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"publishConfig": {
"access": "public"
},
"script": []
}