-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
executable file
·82 lines (82 loc) · 2.42 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"author": "Dmitry Yurov",
"name": "@debut/indicators",
"publishConfig": {
"access": "public"
},
"keywords": [
"analysis",
"bollinger-bands",
"finance",
"financial-instruments",
"indicators",
"currency",
"trading",
"forex",
"cryptocurrency",
"bitfinex",
"binance",
"bybit",
"bollinger-bands",
"macd",
"quant",
"quantative-finance",
"quantative-trading",
"stock-analysis",
"stock-market",
"strategies",
"technical",
"technical-analysis",
"trading-algorithms",
"trading-strategies",
"yahoo-finance",
"tradingview"
],
"description": "Implementation of most popular technical stock indicators for debut environment",
"version": "1.3.22",
"license": "GPL-3.0",
"homepage": "https://github.com/debut-js/Indicators",
"repository": {
"type": "git",
"url": "git@github.com:debut-js/Indicators.git"
},
"scripts": {
"build": "rollup -c ./rollup.config.js",
"start": "ts-node --",
"watch": "rollup -cw ./rollup.config.js",
"test": "jest",
"version": "npm run build",
"postversion": "git push && git push --tags",
"prettier": "prettier --config './.prettierrc' --write './**/*.ts'"
},
"bugs": {
"url": "https://github.com/debut-js/Indicators/issues"
},
"main": "lib/indicators.cjs.js",
"module": "lib/indicators.esm.js",
"browser": "lib/indicators.umd.js",
"types": "lib/index.d.ts",
"devDependencies": {
"@types/jest": "^27.0.6",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"acorn": "^7.3.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^27.0.6",
"prettier": "^2.0.5",
"rollup": "^2.18.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-uglify-es": "0.0.1",
"technicalindicators": "^3.1.0",
"ts-jest": "^27.0.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"optionalDependencies": {}
}