-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.55 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
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
{
"name": "qminder-api",
"version": "13.1.0",
"description": "Qminder Javascript API. Makes it easy to leverage Qminder capabilities in your system.",
"scripts": {
"test": "jest",
"test-node": "jest --env=node",
"lint-eslint": "eslint --ext ts .",
"lint-prettier": "prettier --check .",
"lint": "yarn lint-eslint && yarn lint-prettier",
"format": "prettier --write .",
"build": "sh ./scripts/build.sh",
"docs": "sh ./scripts/build-documentation.sh",
"prepack": "yarn run build",
"watch": "tsc -w",
"example-new-visitors": "ts-node examples/events/new-visitors.ts"
},
"keywords": [
"qminder",
"api",
"websockets",
"restful",
"queue management"
],
"homepage": "https://www.qminder.com/docs/api/",
"bugs": "https://github.com/Qminder/javascript-api/issues",
"author": "Qminder <support@qminder.com> (https://www.qminder.com)",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": "^20.15.0"
},
"browserslist": [
"last 2 major versions"
],
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js",
"default": "./build/index.js"
}
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"repository": "Qminder/javascript-api",
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@types/jest": "29.5.12",
"@types/node": "^20.14.15",
"@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"cross-fetch": "^4.0.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"graphql": "15.9.0",
"graphql-tag": "2.12.6",
"jest": "^29.4.0",
"jest-environment-jsdom": "^29.4.0",
"jest-sinon": "1.1.0",
"jest-websocket-mock": "^2.4.0",
"mock-socket": "9.2.1",
"prettier": "2.8.8",
"rxjs": "7.8.1",
"sinon": "15.1.0",
"ts-jest": "^29.0.5",
"ts-jest-resolver": "^2.0.0",
"ts-loader": "^9.4.2",
"typedoc": "0.26.6",
"typescript": "5.5.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@types/ws": "^8.0.0",
"es6-promise": "^4.1.1",
"isomorphic-ws": "^5.0.0",
"ws": "^8.0.0"
},
"peerDependencies": {
"graphql": ">= 15.5.1",
"graphql-tag": ">= 2.12.5",
"rxjs": ">= 7.8.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"packageManager": "yarn@3.8.4"
}