-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.35 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
{
"name": "@fantasia949/ib-connector",
"version": "1.0.34",
"description": "Interactive Brokers connector",
"homepage": "https://github.com/fantasia949/IB-Connector",
"main": "interactive_brokers/index.js",
"types": "./types.d.ts",
"dependencies": {
"eslint-plugin-jest": "^22.10.0",
"simple-websocket": "^7.2.0",
"tern": "^0.24.1",
"xml-js": "^1.6.11"
},
"devDependencies": {
"jest": "^24.8.0",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6"
},
"scripts": {
"pack": "webpack --config ./webpack.config.js --entry=./interactive_brokers/index.js --output-filename=index.js",
"start": "npm run build && node ./dist/main.js",
"build": "webpack --config ./webpack.config.js --entry=./main.js --output-filename=main.js",
"build-job": "webpack --config ./webpack.config.js --entry=./interactive_brokers/jobs/scannerParamsJob.js --output-filename=scannerParamsJob.js",
"run-job": "node ./dist/scannerParamsJob.js",
"test": "webpack --config ./webpack.config.js --entry=./main.test.js --output-filename=main.test.js && jest --detectOpenHandles --maxWorkers=1 --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fantasia949/IB-Connector.git"
},
"author": "fantasia949",
"license": "ISC",
"bugs": {
"url": "https://github.com/fantasia949/IB-Connector/issues"
}
}