-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "bayesian-changepoint",
"version": "1.0.1",
"main": "./lib/BayesianChangePoint.js",
"typings": "./lib/BayesianChangePoint.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "npx tsc",
"test": "npx mocha -r ts-node/register ./spec/*.ts"
},
"files": [
"lib"
],
"keywords": [
"bayesian",
"changepoint",
"detection",
"javascript"
],
"author": "Mathew Kurian <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mathew-kurian/BayesianChangePointJS.git"
},
"bugs": {
"url": "https://github.com/mathew-kurian/BayesianChangePointJS/issues"
},
"homepage": "https://github.com/mathew-kurian/BayesianChangePointJS#readme",
"description": "Useful Grid algorithm from Material-UI (https://github.com/mui-org/material-ui)",
"dependencies": {},
"peerDependencies": {},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.8",
"mocha": "^7.1.1",
"ts-node": "^8.8.1",
"typescript": "3.7.5"
}
}