-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.57 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
50
51
52
53
54
55
56
{
"name": "@iotum/callbridge-js",
"description": "Loading wrapper for Callbridge",
"version": "1.0.15",
"author": "Iotum (https://www.iotum.com)",
"license": "MIT",
"homepage": "https://www.callbridge.com/",
"bugs": {
"url": "https://github.com/iotum/callbridge-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/iotum/callbridge-js.git"
},
"keywords": [
"callbridge",
"client",
"sdk"
],
"module": "dist/index.esm.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"dependencies": {
"events": "^3.3.0"
},
"devDependencies": {
"@types/events": "^3.0.0",
"@types/jest": "^29.5.2",
"@types/jsdom": "^21.1.1",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"esbuild": "^0.20.2",
"eslint": "^8.43.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^23.2.0",
"npm-dts": "^1.3.12",
"ts-jest": "^29.1.0",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.3",
"typedoc-plugin-missing-exports": "^2.0.0",
"typescript": "~5.1.0"
},
"scripts": {
"lint": "eslint src/",
"build": "node build.js",
"test": "jest",
"doc": "typedoc --plugin typedoc-plugin-markdown --plugin typedoc-plugin-missing-exports --out wiki --excludeExternals --internalModule _internal --readme none src/index.ts",
"predeploy": "npm install && npm run lint && npm run test && npm run build"
}
}