-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.63 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
{
"name": "indicators-benchmark",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"bench": "npm-run-all prepare start:*",
"prepare": "ts-node ./tools/prepare",
"start:ao": "ts-node ./suites/ao",
"start:adx": "ts-node ./suites/adx",
"start:atr": "ts-node ./suites/atr",
"start:bbands": "ts-node ./suites/bbands",
"start:cci": "ts-node ./suites/cci",
"start:dc": "ts-node ./suites/dc",
"start:psar": "ts-node ./suites/psar",
"start:ema": "ts-node ./suites/ema",
"start:macd": "ts-node ./suites/macd",
"start:roc": "ts-node ./suites/roc",
"start:rsi": "ts-node ./suites/rsi",
"start:sma": "ts-node ./suites/sma",
"start:wema": "ts-node ./suites/wema",
"start:wma": "ts-node ./suites/wma",
"start:stochastic": "ts-node ./suites/stochastic",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier suites/**/*.js --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/debut/indicators-benchmark.git"
},
"author": "Dmitriy Yurov",
"license": "MIT",
"bugs": {
"url": "https://github.com/debut/indicators-benchmark/issues"
},
"homepage": "https://github.com/debut/indicators-benchmark#readme",
"dependencies": {
"@debut/indicators": "^1.3.18",
"benchmark": "^2.1.4",
"indicatorts": "^1.0.14",
"technicalindicators": "^3.1.0"
},
"devDependencies": {
"@types/benchmark": "^2.1.2",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"ts-node": "^10.9.1"
}
}