-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"name": "trading-indicator",
"version": "2.0.3-hotfix",
"description": "provide trading technical indicator values",
"main": "index.js",
"scripts": {
"start": "echo example to fetch data from binance && node index.js",
"lint": "eslint ./ --ext .js",
"lint-fix": "eslint ./ --ext .js --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thanhnguyennguyen/trading-indicator.git"
},
"keywords": [
"trading",
"indicators",
"technicalindicators",
"nguyennguyen",
"ccxt",
"exchange",
"cryptocurrency",
"binance",
"bitstamp",
"coinbase",
"bittrex",
"houbipro",
"kraken",
"binanceus",
"bitforex",
"bitfinex",
"bitmex",
"gemini",
"okex"
],
"author": "NguyenNguyen ([email protected])",
"license": "ISC",
"bugs": {
"url": "https://github.com/thanhnguyennguyen/trading-indicator/issues"
},
"homepage": "https://github.com/thanhnguyennguyen/trading-indicator#readme",
"dependencies": {
"ccxt": "^1.95.36",
"technicalindicators": "^3.0.0"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.6.3",
"prettier": "^2.6.2",
"prettier-eslint": "^6.2.0"
}
}