-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
60 lines (60 loc) · 1.67 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "xapi-node",
"version": "3.0.5",
"description": "This project makes it possible to get data from Forex market, execute market or limit order with NodeJS/JS through WebSocket connection",
"exports": {
".": {
"require": "./build/index.js",
"import": "./build/index.js"
}
},
"types": "build/index.d.ts",
"files": [
"build/*"
],
"dependencies": {
"ws": "8.17.1"
},
"devDependencies": {
"@types/chai": "4.3.3",
"@types/mocha": "10.0.0",
"@types/node": "18.7.23",
"@types/ws": "8.5.3",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"chai": "4.3.6",
"esbuild": "0.15.10",
"eslint": "8.24.0",
"mocha": "10.0.0",
"prettier": "2.7.1",
"ts-mocha": "10.0.0",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"scripts": {
"build": "rm -rf ./build && tsc --declaration --emitDeclarationOnly & node ./esbuild.config.js",
"test": "ts-mocha -p ./tsconfig.json ./test/v1/tests.ts test/v1/sandbox.ts --exit",
"prettier": "prettier --check \"src/**/*.ts\" \"sandbox/**/*.ts\"",
"eslint": "eslint --fix \"src/**/*.ts\" \"sandbox/**/*.ts\"",
"lint": "tsc --noEmit && npm run prettier && npm run eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterszombati/xapi-node.git"
},
"keywords": [
"xstation5",
"trading",
"xtb",
"bfbcapital",
"forex",
"trading-api",
"xopenhub"
],
"author": "Peter Szombati",
"license": "BSD 4-Clause",
"bugs": {
"url": "https://github.com/peterszombati/xapi-node/issues"
},
"homepage": "https://github.com/peterszombati/xapi-node#readme"
}