-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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": "podchat",
"version": "12.3.0",
"description": "Javascript SDK to use POD's Chat Service",
"main": "./src/chat.js",
"scripts": {
"test": "mocha --reporter spec --exit",
"publish:snapshot": "npm run version:snapshot && npm publish --tag snapshot",
"version:snapshot": "npm version prerelease --preid snapshot",
"publish:release": "npm run version:release && npm publish",
"version:release": "npm version 12.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FanapSoft/pod-chat-js-sdk.git"
},
"keywords": [
"POD",
"Chat",
"Fanap",
"Dirana"
],
"engines": {
"node": ">=4.2.4"
},
"author": "Masoud Amjadi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FanapSoft/pod-chat-js-sdk/issues"
},
"homepage": "https://github.com/FanapSoft/pod-chat-js-sdk#readme",
"dependencies": {
"crypto-js": "^3.1.9-1",
"dexie": "^2.0.4",
"dompurify": "^2.3.3",
"faker": "^4.1.0",
"form-data": "^2.5.0",
"image-size": "^0.8.3",
"indexeddbshim": "^3.10.0",
"jsdom": "^18.0.0",
"mime": "^2.4.4",
"podasync": "^2.8.3",
"query-string": "^6.8.1",
"request": "^2.88.0"
},
"devDependencies": {
"mocha": "^8.1.1"
}
}