-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.82 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.82 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"author": {
"name": "Agilium Labs LLC",
"email": "agiliumtrade@agiliumtrade.ai"
},
"contributors": [
{
"name": "Roman Kisilenko",
"email": "roman.kisilenko@agiliumlabs.com"
}
],
"bugs": {
"email": "agiliumtrade@agiliumtrade.ai",
"url": "https://github.com/agiliumtrade-ai/metaapi-node.js-client/issues"
},
"keywords": [
"metaapi.cloud",
"MetaTrader",
"MetaTrader 5",
"MetaTrader 4",
"MetaTrader5",
"MetaTrader4",
"MT",
"MT4",
"MT5",
"forex",
"trading",
"API",
"REST",
"websocket",
"client",
"sdk"
],
"name": "metaapi.cloud-sdk",
"description": "SDK for MetaApi, a professional cloud MetaTrader API which includes MetaTrader REST API and MetaTrader websocket API. Supports both MetaTrader 5 (MT5) and MetaTrader 4 (MT4). (https://metaapi.cloud)",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/agiliumtrade-ai/metaapi-node.js-client.git"
},
"version": "1.0.17",
"dependencies": {
"babel-runtime": "~6.26.0",
"randomstring": "~1.1.5",
"request": "~2.88.2",
"request-promise-any": "~1.0.8",
"socket.io-client": "~2.3.0"
},
"devDependencies": {
"babel-cli": "~6.26.0",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-preset-env": "~1.7.0",
"babel-preset-es2015": "~6.24.1",
"babel-register": "~6.26.0",
"eslint": "~7.1.0",
"eslint-plugin-mocha": "~7.0.0",
"mocha": "~7.2.0",
"should": "~13.2.3",
"sinon": "~9.0.2",
"socket.io": "~2.3.0"
},
"scripts": {
"test": "mocha --require babel-register lib/*/*.spec.es6 lib/*.spec.es6",
"lint": "eslint --ext es6 ./lib",
"build": "rm -rf dist; npx babel lib --out-dir dist --source-maps inline --ignore lib/templates;"
},
"main": "dist/index.js"
}