-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 858 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 858 Bytes
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
{
"name": "exchanges-api",
"version": "1.0.0",
"description": "A unified API for all crypto exchanges",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Steven Enamakel <enamakel@cryptocontrol.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cryptocontrol/exchanges-api.git"
},
"keywords": [
"ccxt",
"exchanges",
"cryptocurrency",
"api",
"typescript"
],
"bugs": {
"url": "https://github.com/cryptocontrol/exchanges-api/issues"
},
"homepage": "https://github.com/cryptocontrol/exchanges-api#readme",
"dependencies": {
"ccxt": "^1.18.1205"
},
"devDependencies": {
"@types/node": "^12.7.8",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
}
}