-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.78 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
{
"name": "jspf-cserver",
"version": "1.5.0",
"description": "FIX 4.4 market data demo using quick fix data dictionary",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"circular": "madge --circular --extensions js dist && madge --circular --extensions ts src",
"trim": "cd node_modules/jspurefix/dist && node jsfix-cmd \"--dict=../../data/FIX44-CSERVER.xml\" \"--trim\"",
"generate": "cd node_modules/jspurefix/dist && node jsfix-cmd \"--dict=../../data/FIX44-CSERVER.xml\" \"--compile\" \"--output=../../src/types/\"",
"replay": "cd node_modules/jspurefix/dist && node jsfix-cmd \"--dict=../../data/FIX44-CSERVER.xml\" \"--fix=../../data/example/fix.txt\" \"--objects\" --delimiter=\"|\"",
"tokens": "cd node_modules/jspurefix/dist && node jsfix-cmd \"--dict=../../data/FIX44-CSERVER.xml\" \"--fix=../../data/example/fix.txt\" \"--tokens\" --delimiter=\"|\"",
"app": "cd dist/app && node app --server ../../data/session/test-acceptor.json",
"client": "cd dist/app && node app",
"help": "cd dist/app && node app --help",
"init": "cd node_modules/jspurefix && npm run unzip-repo"
},
"keywords": [
"quickfix",
"fix",
"jspurefix"
],
"author": "",
"license": "ISC",
"dependencies": {
"commander": "^12.1.0",
"jspurefix": "4.0.0",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/sax": "^1.2.7",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"jest": "^29.7.0",
"madge": "^8.0.0",
"standard": "^17.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.5.4"
}
}