forked from rubenafo/trendyways
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 927 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
37
38
39
40
41
42
{
"name": "trendyways",
"preferGlobal": true,
"version": "0.4.1",
"author": "Ruben Afonso <rbfrancos@gmail.com>",
"description": "a javascript library for financial technical analysis",
"contributors": [
{
"name": "Ruben Afonso",
"email": "rbfrancos@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/rubenafo/trendyways.git"
},
"keywords": [
"technical analysis",
"financial",
"finance",
"javascript",
"series"
],
"bundledDependencies": [
"uglify-js",
"jsdoc"
],
"devDependencies": {
"mocha": ">=2.3.4",
"coveralls": "^2.11.6",
"istanbul": "^0.4.2",
"jsdoc": "^3.5"
},
"license": "Apache-2.0",
"engines": {
"node": ">=0.10.15"
},
"scripts": {
"test": "mocha tests",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./tests"
}
}