Compare commits

..

5 Commits

Author SHA1 Message Date
c9b1644f91 0.1.3 2022-04-24 19:01:39 -04:00
c3edc13bef fix: add github repo 2022-04-24 19:01:11 -04:00
51dab26eb4 0.1.2 2022-04-24 18:58:55 -04:00
dc00dbdd6a tweak: README 2022-04-24 18:58:25 -04:00
82c313d9da 0.1.1 2022-04-24 18:55:36 -04:00
3 changed files with 8 additions and 9 deletions

View File

@ -22,7 +22,7 @@ npm install forecasting
#### Aggregation
````js
Aggregation functionality is taken from [@forecasting/aggregation](https://www.npmjs.com/package/@forecasting/aggregation). You may want to install that package directly.
```js
import {
@ -67,12 +67,8 @@ const getAggregatedProbabilities = (array) => {
return result;
}
};
````
```
You may also install [@forecasting/aggregation](https://www.npmjs.com/package/@forecasting/aggregation) directly
#### Scoring
To be done
@ -85,4 +81,3 @@ To be done
- [ ] Do another repository for scoring methods
- [ ] Do another repository for charts
```

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "forecasting",
"version": "0.1.0",
"version": "0.1.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "forecasting",
"version": "0.1.0",
"version": "0.1.3",
"license": "ISC",
"dependencies": {
"@forecasting/aggregation": "^0.0.1"

View File

@ -1,6 +1,6 @@
{
"name": "forecasting",
"version": "0.1.0",
"version": "0.1.3",
"description": "Forecasting related utilities.",
"main": "index.js",
"scripts": {
@ -15,6 +15,10 @@
"dependencies": {
"@forecasting/aggregation": "^0.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/quantified-uncertainty/forecasting/"
},
"devDependencies": {
"lerna": "^4.0.0"
}