-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 982 Bytes
/
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
{
"name": "kraken-wsclient",
"version": "1.0.0",
"description": "websockets API wrapper for the Kraken [websocket API](https://docs.kraken.com/websockets/).",
"scripts": {
"dev": "tsc -w",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agilie/kraken-wsclient-js.git"
},
"keywords": [
"ws",
"kraken",
"api",
"client"
],
"author": "Agilie",
"contributors": [
{
"name": "Prochor Simon",
"email": "prokhor.zimon@agilie.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/agilie/kraken-wsclient-js/issues"
},
"homepage": "https://github.com/agilie/kraken-wsclient-js#readme",
"files": [
"README.md",
"dist/**/*"
],
"main": "./dist/index.js",
"dependencies": {
"axios": "^0.19.0"
},
"devDependencies": {
"prettier": "^1.19.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2"
}
}