-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
{
"name": "@elstats/linear-regression",
"version": "1.3.0",
"description": "Simple Linear Regression",
"main": "dist/index.js",
"scripts": {
"test": "ava --verbose && eslint . --fix",
"prepare": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elstats/linear-regression.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/elstats/linear-regression/issues"
},
"homepage": "https://github.com/elstats/linear-regression#readme",
"devDependencies": {
"ava": "^0.25.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"babelrc-rollup": "^3.0.0",
"eslint-config-helmut": "^3.0.0",
"rollup": "^0.56.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-uglify": "^3.0.0"
},
"dependencies": {
"@elstats/covariance": "^1.1.0",
"@elstats/mean": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"stats-variance": "^1.0.0"
},
"ava": {
"concurrency": 4,
"require": [
"babel-register"
],
"babel": "inherit"
}
}