-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
50 lines (50 loc) · 1.09 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
{
"name": "trendyways",
"preferGlobal": true,
"version": "1.0.1",
"author": "Ruben Afonso <rbfrancos@gmail.com>",
"description": "a javascript library for financial technical analysis",
"contributors": [
{
"name": "Ruben Afonso",
"email": "rbfrancos@gmail.com"
}
],
"main": "dist/trendyways.min.js",
"repository": {
"type": "git",
"url": "https://github.com/rubenafo/trendyways.git"
},
"keywords": [
"technical analysis",
"financial",
"finance",
"javascript",
"series"
],
"bundledDependencies": [
"uglify-js",
"jsdoc"
],
"devDependencies": {
"browserify": "^16.2.3",
"coveralls": "^3.1.1",
"istanbul": "^0.4.2",
"jsdoc": "^3.6.3",
"mocha": ">=2.3.4",
"uglify-es": "^3.3.9",
"uglifyjs-webpack-plugin": "^1.1.2"
},
"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"
},
"bundleDependencies": [
"uglify-js",
"jsdoc"
]
}