-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.71 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
{
"name": "single-market-robot-simulator",
"version": "7.0.2",
"description": "simulations using market-contingent-example populated by various types of robots, such as Gode/Sunder ZI Robots, with configurable supply/demand",
"bin": "./src/bin.cjs",
"exports": "./src/index.mjs",
"scripts": {
"docs": "rm -rf ./docs && npx jsdoc -c .jsdoc.conf.json --access all src/index.mjs && mv out docs",
"lint": "eslint src/index.mjs",
"lint-test": "eslint test/index.mjs",
"test": "c8 --reporter=text mocha --slow 50 --timeout 300000 ",
"coverage": "c8 --reporter=text-lcov mocha --timeout 300000 | coveralls ",
"go": "npm run lint && npm run lint-test && npm run test && npm run docs",
"docker-build": "mkdir ./Docker/v$npm_package_version && cp -a ./Docker/latest/Dockerfile ./Docker/v$npm_package_version/ && docker build -t $npm_package_name:$npm_package_version -f ./Docker/v$npm_package_version/Dockerfile ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/drpaulbrewer/single-market-robot-simulator"
},
"keywords": [
"robot-trading",
"hft",
"market-simulation",
"financial-simulation"
],
"author": "[email protected]",
"license": "MIT",
"engines": {
"node": ">=16.14.0"
},
"dependencies": {
"gini-ss": "^0.2.1",
"market-agents": "^5.0.0",
"market-example-contingent": "^3.2.0",
"p-whilst": "^3.0.0",
"secure-json-parse": "^2.4.0",
"simple-isomorphic-logger": "^5.0.1",
"stats-lite": "^2.2.0"
},
"devDependencies": {
"c8": "^7.11.0",
"coveralls": "^3.1.1",
"eslint": "^8.11.0",
"jsdoc": "^3.6.10",
"mocha": "^9.2.2",
"should": "^13.2.3"
},
"directories": {
"test": "test"
}
}