forked from mkmarek/forex.analytics
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 885 Bytes
/
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
{
"name": "forex.analytics",
"version": "0.0.14",
"description": "Performs data anaylsis on a set of candlesticks and using available indicators constructs the best strategy which worked on a certain period.",
"main": "index.js",
"engines": {
"node": ">= 4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mkmarek/forex.analytics.git"
},
"scripts": {
"preinstall": "node ./lib/ta-lib/build.js",
"postinstall": "node-gyp configure && node-gyp build",
"clean": "node ./lib/ta-lib/clean.js",
"test": "node mocha"
},
"gypfile": true,
"keywords": [
"forex",
"analytics",
"genetic",
"algorithm"
],
"author": "Marek Magdziak",
"license": "MIT",
"dependencies": {
"nan": "^2.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"fs-readdir-recursive": "^1.0.0",
"mocha": "^2.4.5"
}
}