forked from TimelordUK/jspurefix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 5.17 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 5.17 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "jspurefix",
"version": "2.2.1",
"description": "pure node js fix engine",
"keywords": [
"typescript",
"fix",
"engine",
"fixml",
"ascii",
"financial",
"protocol",
"trading"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/TimelordUK/jspurefix",
"bugs": {
"url": "https://github.com/TimelordUK/jspurefix/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TimelordUK/jspurefix.git"
},
"scripts": {
"circular": "madge --circular --extensions js dist && madge --circular --extensions ts src",
"test": "jest",
"build": "tsc",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"cmd": "cd dist && node jsfix-cmd",
"repo44": "cd dist && node jsfix-cmd --dict=repo44",
"repo44-unit": "cd dist && node jsfix-cmd --dict=repo44 --generate --density=0.8 --unit --delimiter=\"|\" --session=data/session/test-initiator.json",
"repo44-script": "cd dist && node jsfix-cmd --dict=repo44 --generate --density=0.8 --script --delimiter=\"|\" --session=data/session/test-initiator.json",
"repo44-replay": "cd dist && node jsfix-cmd --dict=repo44 --fix=data/examples/FIX.4.4/fix.txt --delimiter=\"|\" --session=data/session/test-initiator.json",
"repo44-repscr": "cd dist && node jsfix-cmd --dict=repo44 --fix=dist/fix.txt --delimiter=\"|\" --stats",
"repo44-bench": "cd dist && node jsfix-cmd --dict=repo44 --benchmark --delimiter=\"|\"",
"repo44-bench-er": "cd dist && node jsfix-cmd --dict=repo44 --fix=data/examples/FIX.4.4/repo/execution-report/fix.txt --benchmark --delimiter=\"|\" --repeats=125000",
"repo44-bench-tc": "cd dist && node jsfix-cmd ---dict=repo44 --fix=data/examples/FIX.4.4/repo/trade-capture/fix.txt --benchmark --delimiter=\"|\" --repeats=30000",
"repo44-bench-sd": "cd dist && node jsfix-cmd --dict=repo44 --fix=data/examples/FIX.4.4/repo/security-definition/fix.txt --benchmark --delimiter=\"|\" --repeats=150000",
"repo44-bench-lo": "cd dist && node jsfix-cmd --dict=repo44 --fix=data/examples/FIX.4.4/repo/logon/fix.txt --benchmark --delimiter=\"|\" --repeats=250000",
"qf-bench-lo": "cd dist && node jsfix-cmd --session=data/session/test-initiator.json --fix=data/examples/FIX.4.4/quickfix/logon/fix.txt --benchmark --delimiter=\"|\" --repeats=250000",
"fixml": "cd dist && node jsfix-cmd --dict=repofixml",
"tcp-qf-md": "cd dist/sample/tcp/qf-md && node app",
"tcp-tls-tc": "cd dist/sample/tcp/tls-trade-capture && node app",
"tcp-tc": "cd dist/sample/tcp/trade-capture && node app",
"tcp-rec-sk": "cd dist/sample/tcp/recovering-skeleton && node app",
"tcp-sk": "cd dist/sample/tcp/skeleton && node app",
"http-oms": "cd dist/sample/http/oms && node app",
"repo40-compile": "cd dist && node jsfix-cmd \"--dict=repo40\" \"--compile\"",
"repo41-compile": "cd dist && node jsfix-cmd \"--dict=repo41\" \"--compile\"",
"repo42-compile": "cd dist && node jsfix-cmd \"--dict=repo42\" \"--compile\"",
"repo43-compile": "cd dist && node jsfix-cmd \"--dict=repo43\" \"--compile\"",
"repo44-compile": "cd dist && node jsfix-cmd \"--dict=repo44\" \"--compile\"",
"repo50-compile": "cd dist && node jsfix-cmd \"--dict=repo50\" \"--compile\"",
"repo50sp1-compile": "cd dist && node jsfix-cmd \"--dict=repo50sp1\" \"--compile\"",
"repo50sp2-compile": "cd dist && node jsfix-cmd \"--dict=repo50sp2\" \"--compile\"",
"repofixml-compile": "cd dist && node jsfix-cmd \"--dict=repofixml\" \"--compile\"",
"qf44-compile": "cd dist && node jsfix-cmd \"--dict=qf44\" \"--compile\"",
"qf43-compile": "cd dist && node jsfix-cmd \"--dict=qf43\" \"--compile\"",
"qf42-compile": "cd dist && node jsfix-cmd \"--dict=qf42\" \"--compile\"",
"unzip-repo": "cd data && node ../src/util/unzip fix_repo.zip",
"fixml-test-print": "cd dist && node jsfix-cmd --session=data/session/test-http-initiator.json --fix=data/examples/fixml/jsfix.test_http-client.txt --objects",
"fix-test-print": "cd dist && node jsfix-cmd --dict=repo44 --fix=data/examples/FIX.4.4/jsfix.test_client.txt --objects --delimiter=\"|\""
},
"author": "",
"license": "MIT",
"dependencies": {
"align-text": "^1.0.2",
"express": "^4.18.2",
"lodash": "^4.17.21",
"mathjs": "^11.3.0",
"minimist": "^1.2.7",
"moment": "^2.29.4",
"node-fs-extra": "^0.8.2",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"sax": "^1.2.4",
"tsyringe": "^4.7.0",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"word-wrap": "^1.2.3",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/express-serve-static-core": "^4.17.31",
"@types/jest": "^29.1.2",
"@types/lodash": "^4.14.186",
"@types/mathjs": "^9.4.1",
"@types/minimist": "^1.2.2",
"@types/node": "^18.11.0",
"@types/request-promise-native": "^1.0.18",
"@types/sax": "^1.2.4",
"@types/uuid": "^8.3.4",
"@types/winston": "^2.4.4",
"jest": "^29.2.0",
"madge": "^5.0.1",
"standard": "^17.0.0",
"ts-jest": "^29.0.3",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.8.4"
}
}