This repository has been archived by the owner on Apr 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 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
{
"name": "kdj",
"version": "1.0.5",
"description": "FinTech utility method to calculate the KDJ indicator.",
"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/kdj.git"
},
"keywords": [
"kdj",
"fintech",
"indicator",
"stochastic oscillator"
],
"engines": {
"node": ">=4"
},
"author": "kaelzhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaelzhang/kdj/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": {
"hhv-llv": "^1.0.0",
"math-array": "^1.1.2",
"moving-averages": "^4.0.5"
}
}