forked from anandanand84/technicalindicators
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.91 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.91 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "technicalindicators",
"version": "1.0.20",
"description": "Techincal Indicators written in javascript",
"main": "dist/index.js",
"browser": "dist/browser.js",
"module": "lib/index.js",
"types": "./declarations/index.d.ts",
"jsnext:main": "lib/index.js",
"scripts": {
"cover": "babel-istanbul --include-all-sources cover -x dist/**/*.* ./node_modules/mocha/bin/_mocha -- -R spec && open coverage/lcov-report/index.html",
"test": "mocha --compilers js:babel-register --require babel-polyfill",
"generateDts": "dts-bundle --name indicators --main declarations/index.d.ts --out generated.d.ts --baseDir declarations --outputAsModuleFolder",
"build-lib": "babel-node --presets es2015 rollup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anandanand84/technicalindicators.git"
},
"keywords": [
"Technical indicators",
"Technical analysis",
"finance",
"forex",
"stocks",
"Bitcoin",
"Ethereum",
"Crypto Currency",
"rsi",
"relative strength index",
"macd",
"moving average convergence divergance and histogram",
"ema",
"exponential moving average",
"sma",
"simple moving average",
"wma",
"weighted moving average",
"kst",
"know sure thing",
"roc",
"rate of change",
"bollinger bands",
"atr",
"Average true range",
"Stochastic",
"WilliamsR",
"Accumulation Distribution Line",
"adl",
"On Balance Volume",
"OBV",
"TRIX",
"CandleStick",
"DOJI",
"AbandonedBaby",
"Renko",
"ADX",
"Heikin Ashi",
"CCI",
"Commodity Channel Index",
"VWAP",
"Force Index",
"PSAR"
],
"author": "anand.anand84@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/anandanand84/technicalindicators/issues"
},
"homepage": "https://github.com/anandanand84/technicalindicators#readme",
"devDependencies": {
"@types/chai": "^3.0.0",
"@types/mocha": "^2.0.0",
"@types/node": "^6.0.31",
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-register": "^6.8.0",
"babel-runtime": "^6.23.0",
"chai": "^3.0.0",
"draw-candlestick": "*",
"gulp": "^3.9.1",
"gulp-mocha": "^2.2.0",
"gulp-util": "^3.0.7",
"koa": "^2.2.0",
"koa-static": "^3.0.0",
"mocha": "^2.4.5",
"monaco-editor": "^0.8.3",
"rimraf": "^2.0.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.2",
"rollup-watch": "^3.2.2",
"ts-node": "^1.0.0",
"tslint": "^4.0.0",
"typescript": "^2.0.0"
},
"dependencies": {
"babel-polyfill": "^6.23.0"
}
}