-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.05 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.05 KB
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
{
"name": "@avihimsa/heart-rate-variability-analysis",
"version": "0.1.0",
"description": "Common Heart rate variability (HRV) analysis metrics",
"author": "Luka Kakia",
"license": "MIT",
"repository": "manguluka/heart-rate-variability-analysis",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"dependencies": {
"histogramjs": "0.0.1",
"jStat": "^1.7.1",
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-jest": "^24.8.0",
"documentation": "^11.0.0",
"jest": "^24.8.0",
"rollup": "^1.12.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.0"
},
"scripts": {
"now-build": "yarn docs",
"prepublish": "yarn build",
"docs": " documentation build src/** -f html -o docs",
"build": "rollup -c",
"dev": "rollup -c -w",
"test-integration": "jest int.test",
"test-unit": "jest unit.test"
},
"files": [
"dist"
]
}