forked from livechat/lc-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "@livechat/lc-sdk-js",
"version": "1.0.0",
"description": "LiveChat SDK in JS",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc --build",
"docs": "typedoc --plugin typedoc-plugin-markdown --out ./docs/ --exclude *example.ts",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"LiveChat",
"SDK"
],
"author": "Krystian Ogierman <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/form-data": "^2.5.0",
"@types/node": "^14.0.13",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.2.6",
"prettier": "^2.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.18.0",
"typedoc-plugin-markdown": "^2.4.0",
"typescript": "^3.9.5"
},
"dependencies": {
"axios": "0.21.1",
"form-data": "3.0.0",
"isomorphic-ws": "4.0.1",
"uuid": "^8.3.0",
"ws": "^7.3.1"
}
}