-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 2.74 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 2.74 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
{
"name": "dexbot2",
"version": "0.6.0",
"description": "A sophisticated market making bot for the BitShares Decentralized Exchange (DEX), implementing optimized staggered order strategies for automated trading.",
"main": "modules/chain_orders.js",
"bin": {
"dexbot": "./dexbot.js",
"bot": "./bot.js"
},
"scripts": {
"pm2:unlock-start": "node pm2.js",
"unlock:start": "node unlock-start.js",
"pm2:start": "pm2 start profiles/ecosystem.config.js",
"pm2:stop": "pm2 stop profiles/ecosystem.config.js",
"pm2:reload": "pm2 reload profiles/ecosystem.config.js",
"pmain": "bash scripts/pmain.sh",
"pdev": "bash scripts/pdev.sh",
"ptest": "bash scripts/ptest.sh",
"test": "node tests/test_utils.js && node tests/test_order_grid.js && node tests/test_logger.js && node tests/test_manager.js && node tests/test_account_totals.js && node tests/connection_test.js && node tests/test_key_validation.js && node tests/test_subscriptions.js && node tests/test_btsdex_event_patch.js && node tests/test_fills.js && node tests/test_account_selection.js && node tests/test_autoderive.js && node tests/test_price_derive.js && node tests/test_price_no_positional.js && node tests/test_price_orientation.js && node tests/test_price_tolerance.js && node tests/test_chain_helpers.js && node tests/test_unanchored_spread_correction.js && node tests/test_spread_redistribution_fallback.js && node tests/test_ghost_order_fix.js && node tests/test_startup_decision.js && node tests/test_partial_order_edge_cases.js && node tests/test_integration_partial_complex.js && node tests/test_precision_quantization.js && node tests/test_precision_integration.js && node tests/test_dust_rebalance_logic.js && node tests/test_bts_fee_accounting.js && node tests/test_multifill_opposite_partial.js && node tests/test_accounting_logic.js && node tests/test_strategy_logic.js && node tests/test_sync_logic.js && node tests/test_grid_logic.js && node tests/test_manager_logic.js && node tests/test_bts_fee_logic.js && node tests/test_boundary_sync_logic.js && node tests/test_fee_backwards_compat.js && node tests/test_layer2_self_healing.js && node tests/test_working_grid.js && node tests/test_cow_commit_guards.js && node tests/test_cow_master_plan.js && node tests/test_legacy_cow_projection.js && node tests/repro_phantom_orders.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/froooze/DEXBot2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/froooze/DEXBot2/issues"
},
"homepage": "https://github.com/froooze/DEXBot2#readme",
"dependencies": {
"bs58check": "^4.0.0",
"btsdex": "^0.7.11",
"readline-sync": "^1.4.10"
},
"devDependencies": {
}
}