Compare commits

..

8 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
0877fb056e Publish
- @forecasting/aggregation@1.0.3
2022-04-24 18:54:36 -04:00
1c87f1e18c tweak: lerna tweak 2022-04-24 18:53:49 -04:00
0559c4ef90 tweak: lerna 2022-04-24 18:52:16 -04:00
5 changed files with 11 additions and 10 deletions

View File

@ -8,6 +8,7 @@ This package contains a series of utilities related to forecasting. It is curren
- vanilla javascript
- [Best readme template](https://github.com/othneildrew/Best-README-Template)
- [lerna](https://github.com/lerna/lerna)
## Getting started
@ -21,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 {
@ -66,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
@ -84,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"
}

View File

@ -10,6 +10,7 @@ For an introduction to different aggregation methods, see Jaime Sevilla's [Aggre
- vanilla javascript
- [Best readme template](https://github.com/othneildrew/Best-README-Template)
- [lerna](https://github.com/lerna/lerna)
## Getting started

View File

@ -1,6 +1,6 @@
{
"name": "@forecasting/aggregation",
"version": "1.0.2",
"version": "1.0.3",
"description": "Forecasting aggregation utilities",
"main": "index.js",
"scripts": {