forked from CoinWizard/kuna-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.41 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
{
"name": "kuna-sdk",
"version": "0.4.20",
"description": "NodeJS SDK for Kuna exchange for API v2 and v3",
"keywords": [
"kuna.io",
"cryptocurrency",
"exchange api",
"kuna api v3"
],
"scripts": {
"build": "rm -rf ./lib && tsc --esModuleInterop",
"test": "mocha -t 10000",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --bail -t 20000 --slow 99999 -R dot",
"tag:patch": "yarn version --new-version patch",
"tag:minor": "yarn version --new-version minor",
"publish:alpha": "yarn publish --tag next"
},
"repository": "https://github.com/CoinWizard/kuna-sdk",
"homepage": "https://kuna.io",
"author": "CoinWizard Team <info@coinwizard.me>",
"license": "LGPL-3.0",
"main": "./index.js",
"types": "lib/index.d.ts",
"dependencies": {
"axios": "0.19.0",
"debug": "3.1.0",
"lodash": "4.17.15",
"qs": "6.9.0"
},
"devDependencies": {
"@babel/register": "7.0.0",
"@types/lodash": "4.14.139",
"@types/node": "12.7.7",
"@types/pusher-js": "4.2.2",
"@types/qs": "6.5.3",
"assert": "1.4.1",
"babel-core": "6.26.3",
"babel-loader": "7.1.5",
"babel-preset-es2015": "6.24.1",
"expect": "23.6.0",
"mocha": "5.2.0",
"moment": "2.24.0",
"typescript": "3.6.3"
}
}