-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.41 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@rxtrading/strategy-engine",
"version": "0.0.1",
"description": "A fast strategy engine that provides signals from powerful JSON rules.",
"keywords": [
"strategy",
"engine",
"algorithmic",
"backtesting",
"indicators",
"rules",
"signals",
"trading"
],
"main": "index.js",
"scripts": {
"test": "c8 mocha ./test",
"lint": "standard --verbose",
"lint:fix": "standard --verbose --fix"
},
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rxtrading/strategy-engine"
},
"homepage": "https://github.com/rxtrading/strategy-engine",
"dependencies": {
"bignumber.js": "^9.1.2",
"fastest-validator": "^1.18.0",
"json-rules-engine": "^6.5.0",
"jsonata": "^2.0.5",
"lodash": "^4.17.21",
"technicalindicators": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/eslint-parser": "^7.24.5",
"c8": "^9.1.0",
"ccxt": "^4.3.22",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.2",
"chai-datetime": "^1.8.0",
"chai-samsam": "^0.0.2",
"chance": "^1.1.11",
"dirty-chai": "^2.0.1",
"mocha": "^10.4.0",
"standard": "^17.1.0"
},
"standard": {
"parser": "@babel/eslint-parser",
"globals": [
"describe",
"it",
"expect",
"before",
"beforeEach",
"after",
"afterEach"
]
}
}