-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.52 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.52 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@contactlab/sdk-browser",
"version": "2.2.1",
"description": "Contactlab Browser SDK",
"author": "Contactlab",
"license": "Apache-2.0",
"repository": "contactlab/contacthub-sdk-browser",
"homepage": "https://contactlab.github.io/contacthub-sdk-browser/",
"bugs": "https://github.com/contactlab/contacthub-sdk-browser/issues",
"keywords": [
"contactlab",
"contacthub",
"sdk",
"tracking"
],
"engines": {
"node": ">= 16.0",
"npm": ">= 8.0"
},
"main": "dist/sdk.js",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"lint": "eslint '{src,test,lib}/**' --ext .js,.jsx,.ts,.tsx",
"check": "tsc",
"karma": "karma start",
"pretest": "npm run check && npm run lint",
"test": "jest -i && npm run karma",
"test:bs": "jest -i && BS=true npm run karma",
"prebuild": "npm run test",
"build": "webpack",
"prepublishOnly": "npm run build",
"example": "open-cli 'http://127.0.0.1:8080/example/?workspaceId=WORKSPACE_ID&nodeId=NODE_ID&token=TOKEN' && http-server",
"docs": "docs-ts",
"docs:update": "npm run docs && git add docs",
"postdocs": "ts-node scripts/docs"
},
"dependencies": {
"cross-fetch": "4.0.0",
"es6-promise": "4.2.8",
"fp-ts": "2.16.2",
"js-cookie": "3.0.5",
"jssha": "3.3.1",
"tslib": "2.6.2",
"uuid": "9.0.1"
},
"devDependencies": {
"@types/chai": "4.3.11",
"@types/jest": "29.5.11",
"@types/js-cookie": "3.0.6",
"@types/karma": "6.3.8",
"@types/mocha": "10.0.6",
"@types/node": "20.5.7",
"@types/sinon": "17.0.3",
"@types/uuid": "9.0.7",
"chai": "5.0.0",
"docs-ts": "0.8.0",
"eslint": "8.56.0",
"eslint-config-contactlab": "12.0.0",
"eslint-config-prettier": "9.1.0",
"fetch-mock": "9.11.0",
"http-server": "14.1.1",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"karma": "6.4.2",
"karma-browserstack-launcher": "1.6.0",
"karma-chrome-launcher": "3.2.0",
"karma-mocha": "2.0.1",
"karma-webpack": "5.0.0",
"lint-staged": "15.2.0",
"mocha": "10.2.0",
"open-cli": "8.0.0",
"prettier": "2.8.8",
"sinon": "17.0.1",
"ts-jest": "29.1.1",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "5.3.3",
"webpack": "5.89.0",
"webpack-cli": "5.1.4",
"webpack-merge": "5.10.0"
},
"overrides": {
"eslint-config-contactlab": {
"typescript": "$typescript"
}
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
}
}