-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
105 lines (105 loc) · 2.79 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "data-forge-indicators",
"version": "0.2.7",
"description": "Financial indicators for use with Data-Forge.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"setup": "npm install --save=false data-forge",
"c": "npm run clean",
"clean": "rm -rf build/*",
"b": "npm run build",
"bw": "npm run build:watch",
"build": "tsc",
"clean-build": "rm -rf build/* && tsc",
"build:watch": "tsc --watch",
"clean-build:watch": "rm -rf build/* && tsc --watch",
"t": "npm run test",
"test": "mocha --opts ./src/test/mocha.opts",
"tw": "npm run test:watch",
"test:watch": "mocha --watch --watch-extensions ts --opts ./src/test/mocha.opts",
"prepublishOnly": "npm run clean && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/data-forge/data-forge-indicators.git"
},
"keywords": [
"nodejs",
"visualization",
"visualisation",
"charts",
"trading",
"quantitative",
"quantitative trading",
"algorithmic trading",
"indicator",
"indicators",
"financial indicator",
"financial indicators",
"trend",
"rsi",
"relative strength index",
"connors",
"rate of change",
"moving average",
"simple moving average",
"sma",
"exponential moving average",
"ema",
"bollinger",
"bollinger bands",
"%b",
"percent bandwidth",
"extrema",
"peaks",
"troughs",
"momentum",
"days rising",
"days falling",
"stock market",
"share market",
"gap",
"gaps"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/data-forge/data-forge-indicators/issues"
},
"homepage": "https://github.com/data-forge/data-forge-indicators#readme",
"dependencies": {
"moment": "^2.29.1"
},
"peerDependencies": {
"data-forge": "^1.8.12"
},
"devDependencies": {
"@types/chai": "4.0.4",
"@types/mocha": "2.2.43",
"@types/node": "8.0.28",
"chai": "4.1.2",
"data-forge-fs": "0.0.6",
"mocha": "3.5.3",
"nyc": "11.8.0",
"source-map-support": "0.5.6",
"ts-node": "3.3.0",
"typescript": "2.5.2"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"src/test/**/*",
"build/**/*",
"docs/**/*",
"coverage/**/*"
],
"reporter": [
"text-summary"
],
"all": true
}
}