bollinger-bands
Version:
Fintach math utility to calculate bollinger bands.
68 lines (67 loc) • 1.82 kB
JSON
{
"name": "bollinger-bands",
"version": "3.0.2",
"description": "Fintach math utility to calculate bollinger bands.",
"main": "lib/index.js",
"module": "src/index.js",
"scripts": {
"build": "BABEL_ENV=rollup rollup -c",
"test": "BABEL_ENV=ava nyc ava --verbose --timeout=10s",
"prepublish": "npm run build",
"report-cov": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"files": [
"lib/",
"src/"
],
"repository": {
"type": "git",
"url": "git://github.com/kaelzhang/bollinger-bands.git"
},
"keywords": [
"bollinger-bands",
"fintech",
"financial-technology",
"stock"
],
"engines": {
"node": ">=4"
},
"author": "kaelzhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaelzhang/bollinger-bands/issues"
},
"ava": {
"require": "babel-register",
"babel": {
"babelrc": true
},
"files": [
"test/*.js"
]
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.16.0",
"babel-plugin-syntax-trailing-function-commas": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-exponentiation-operator": "^6.8.0",
"babel-plugin-transform-inline-environment-variables": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-register": "^6.24.1",
"codecov": "^3.8.1",
"nyc": "^11.1.0",
"rollup": "^0.49.3",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-node-resolve": "^3.0.0"
},
"dependencies": {
"math-array": "^1.1.2",
"moving-averages": "^4.0.5",
"s-deviation": "^2.0.3"
}
}