-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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": "bittrex-typescript",
"version": "2.1.6",
"description": "Bittrex client using typescript",
"main": "src/index.js",
"types": "src/index.d.ts",
"author": "Jon S. Stevens <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "node src/test/Run"
},
"devDependencies": {
"@types/got": "^7.1.3",
"@types/node": "^8.0.26",
"@types/query-string": "^5.0.0",
"ts-node": "^3.3.0",
"typescript": "^2.5.2"
},
"dependencies": {
"bignumber.js": "^4.0.3",
"got": "^7.1.0",
"json2typescript": "^1.0.2",
"query-string": "^5.0.0",
"retry-promise-typescript": "^1.0.5",
"tslib": "^1.7.1"
},
"engines": {
"node": "8.x.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lookfirst/bittrex-typescript.git"
},
"keywords": [
"bittrex",
"typescript",
"nodejs",
"client",
"api"
],
"bugs": {
"url": "https://github.com/lookfirst/bittrex-typescript/issues"
},
"homepage": "https://github.com/lookfirst/bittrex-typescript#readme"
}