-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
{
"name": "statsmodels-js",
"version": "0.4.1",
"description": "basic statistics library.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/egusahiroaki/statsmodels-js"
},
"scripts": {
"prepare": "npm run build",
"test": "jest",
"test:c": "jest --coverage",
"lint": "npx eslint ./",
"build": "npx webpack --config ./webpack.config.js --mode=production",
"dev": "npx webpack --watch"
},
"author": "egusahiroaki",
"license": "MIT",
"dependencies": {
"core-js": "^3.6.5",
"eslint": "^6.8.0",
"install": "^0.13.0",
"jstat": "^1.9.3",
"lodash": "^4.17.15",
"mathjs": "^6.6.4",
"npm": "^6.14.4",
"regenerator-runtime": "^0.13.5",
"svd-js": "^1.0.6"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-jest": "^25.4.0",
"babel-loader": "^8.1.0",
"coveralls": "^3.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.4.0",
"prettier": "^2.0.5",
"terser-webpack-plugin": "^3.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"keywords": [
"statistics",
"test",
"descriptive",
"math",
"probability"
]
}