fix-over-tcp
Version:
Custom TCP FIX protocol(beta
95 lines (94 loc) • 2.72 kB
JSON
{
"name": "fix-over-tcp",
"version": "0.0.1",
"description": "Custom TCP FIX protocol(beta",
"main": "./fix-over-tcp.js",
"module": "./src/FIXParser.js",
"browser": "./browser.js",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/dropyourcoffee/fix-over-tcp.git"
},
"scripts": {
"eslint": "eslint *.babel.js *.config.js spec src test prebuild",
"prettier": "node_modules/prettier/bin-prettier.js \"**/*.js\" --write",
"prebuild": "babel-node --max-old-space-size=4096 prebuild/index.js",
"build": "webpack -p --optimize-dedupe --optimize-minimize --color",
"example": "babel-node examples/example.js",
"example_ctrader": "babel-node examples/example_ctrader.js",
"server-socket": "babel-node examples/example_server.js",
"client-socket": "babel-node examples/example_client.js",
"server-websocket": "babel-node examples/example_websocketserver.js",
"client-websocket": "babel-node examples/example_websocketclient.js",
"perf": "node perf/Perf-FIXParser.js",
"test": "jest --colors",
"upgrade-interactive": "npm-check --update",
"start": "node server.js"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"cli-table": "^0.3.1",
"eslint": "^6.2.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.14.3",
"jest": "^24.9.0",
"npm-check": "^5.9.0",
"prettier": "^1.18.2",
"terser": "^4.2.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"yargs": "^14.0.0"
},
"resolutions": {
"terser": "3.14.1"
},
"keywords": [
"FIX Protocol",
"FIX Parser",
"FIX Client",
"FIX Server",
"FIX5.0SP2",
"FIX",
"Websocket",
"Financial Information eXchange"
],
"author": "Dexter Jung",
"license": "MIT",
"jest": {
"globals": {
"__PACKAGE_VERSION__": true,
"__BUILD_TIME__": true
},
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/**/*.{js}",
"!**/dashboard/**",
"!**/node_modules/**",
"!**/spec/**"
],
"coverageReporters": [
"lcov"
]
},
"dependencies": {
"ws": "^7.1.2"
},
"bugs": {
"url": "https://gitlab.com/dropyourcoffee/fix-over-tcp/issues"
},
"homepage": "https://gitlab.com/dropyourcoffee/fix-over-tcp",
"directories": {
"example": "examples",
"test": "test"
}
}