forked from tripolskypetr/backtest-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.42 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.42 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
{
"name": "backtest-kit",
"version": "12.0.0",
"description": "A TypeScript library for trading system backtest",
"author": {
"name": "Petr Tripolsky",
"email": "tripolskypetr@gmail.com",
"url": "https://github.com/tripolskypetr"
},
"funding": {
"type": "individual",
"url": "http://paypal.me/tripolskypetr"
},
"license": "MIT",
"homepage": "https://backtest-kit.github.io/documents/article_07_ai_news_trading_signals.html",
"keywords": [
"backtesting",
"backtest",
"finance",
"trading",
"candles",
"indicators",
"multi value",
"multi symbol",
"framework"
],
"files": [
"build",
"types.d.ts",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/tripolskypetr/backtest-kit",
"documentation": "https://github.com/tripolskypetr/backtest-kit/tree/master/docs"
},
"bugs": {
"url": "https://github.com/tripolskypetr/backtest-kit/issues"
},
"scripts": {
"build": "rollup -c",
"test": "npm run build && node ./test/index.mjs",
"build:docs": "rimraf docs && mkdir docs && node ./scripts/dts-docs.cjs ./types.d.ts ./docs",
"docs:gpt": "npm run build && node ./tools/gpt-docs/index.mjs",
"docs:uml": "npm run build && node ./scripts/uml.mjs",
"docs:www": "rimraf docs/wwwroot && node ./tools/typedoc-packages-docs/index.mjs && typedoc && node ./tools/typedoc-yandex-metrica/index.mjs",
"repl": "dotenv -e .env -- npm run build && node -e \"import('./scripts/repl.mjs')\" --interactive"
},
"main": "build/index.cjs",
"module": "build/index.mjs",
"source": "src/index.ts",
"types": "./types.d.ts",
"exports": {
"require": "./build/index.cjs",
"types": "./types.d.ts",
"import": "./build/index.mjs",
"default": "./build/index.cjs"
},
"devDependencies": {
"@rollup/plugin-typescript": "11.1.6",
"@types/node": "22.9.0",
"glob": "11.0.1",
"plantuml": "0.0.2",
"rimraf": "6.0.1",
"rollup": "3.29.5",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"ts-morph": "27.0.2",
"tslib": "2.7.0",
"typedoc": "0.27.9",
"worker-testbed": "2.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"di-kit": "^1.1.1",
"di-scoped": "^1.0.21",
"di-singleton": "^1.0.5",
"functools-kit": "^2.3.0",
"get-moment-stamp": "^2.0.0"
},
"publishConfig": {
"access": "public"
}
}