-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.62 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
{
"name": "think-bayes",
"version": "0.1.3-alpha.7",
"description": "An algorithm framework of probability and statistics for browser and Node.js environment.",
"scripts": {
"build:index": "npx rimraf esm/index.js && npx create-index --ignoreUnsafe esm",
"build:module": "npx rimraf cjs && npx babel esm --copy-files --source-maps --extensions .js --out-dir cjs",
"build:readme": "node scripts/createDocs.js",
"build": "npm run build:index && npm run build:module && npm run build:readme",
"release": "npx standard-version",
"prepublishOnly": "npm run build",
"run-demo": "npx babel-node"
},
"dependencies": {
"core-js": "3",
"decimal.js": "^10.2.0"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-arrow-functions": "^7.7.4",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"create-index": "^2.3.0",
"dox": "^0.9.0",
"rimraf": "^2.6.2",
"standard-version": "^7.1.0"
},
"main": "cjs",
"repository": {
"type": "git",
"url": "git+https://github.com/parksben/think-bayes.git"
},
"keywords": [
"think-bayes",
"think bayes",
"bayes",
"PMF",
"PDF",
"CDF",
"Suite",
"Hist",
"Joint",
"KDE",
"probability",
"statistics",
"algorithm"
],
"author": "parksben",
"license": "MIT",
"bugs": {
"url": "https://github.com/parksben/think-bayes/issues"
},
"homepage": "https://github.com/parksben/think-bayes#readme"
}