-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
63 lines (63 loc) · 1.44 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
{
"name": "crisp-api",
"description": "Crisp API wrapper for Node - official, maintained by Crisp",
"version": "9.4.0",
"homepage": "https://github.com/crisp-im/node-crisp-api",
"license": "MIT",
"author": {
"name": "Baptiste Jamin",
"email": "[email protected]",
"url": "https://jamin.me/"
},
"contributors": [
{
"name": "Valerian Saliou",
"email": "[email protected]",
"url": "https://valeriansaliou.name/"
},
{
"name": "Eliott Vincent",
"email": "[email protected]",
"url": "https://www.eliottvincent.com/"
}
],
"repository": {
"type": "git",
"url": "git://github.com/crisp-im/node-crisp-api.git"
},
"bugs": {
"url": "https://github.com/crisp-im/node-crisp-api/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/crisp-im/node-crisp-api/blob/master/LICENSE"
}
],
"main": "lib/crisp.js",
"types": "types/crisp.d.ts",
"engines": {
"node": ">= 10.19.0"
},
"scripts": {
"test": "check-build",
"generate:types": "rm -rf ./types/* && tsc"
},
"devDependencies": {
"check-build": "2.8.2",
"typescript": "5.1.6"
},
"dependencies": {
"socket.io-client": "4.7.2",
"fbemitter": "github:crisp-dev/emitter#695f60594bdca0c876e5c232de57702ab3151b6f",
"got": "11.8.5"
},
"keywords": [
"crisp",
"integration",
"wrapper",
"api",
"rest",
"websocket"
]
}