diff --git a/README.md b/README.md index d07d902..143380c 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,11 @@ Rationale is inspired by [RamdaJS](http://ramdajs.com/). It is a collection of h Note that not all of Ramda was ported over, as many of Ramda's utilities are making up for deficits in Javascript, which Reason doesn't have. Furthermore, many of the functions that operate on objects, simply don't make sense in Reason. +Installation +-------------------------------------------------------------------------------- + +Run `npm install --save rationale` and add `rationale` to `bs-dependencies` in `bsconfig.json`. + Features -------------------------------------------------------------------------------- diff --git a/bsconfig.json b/bsconfig.json index 8556f08..d4a13e7 100644 --- a/bsconfig.json +++ b/bsconfig.json @@ -12,7 +12,7 @@ "type": "dev" } ], - "bs-dependencies": [ + "bs-dev-dependencies": [ "bs-jest" ], "namespace": true, diff --git a/package.json b/package.json index 3464765..49d0211 100644 --- a/package.json +++ b/package.json @@ -23,9 +23,8 @@ ], "license": "MIT", "devDependencies": { - "bs-platform": "2.0.0" - }, - "dependencies": { + "bs-platform": "2.0.0", "bs-jest": "^0.2.0" - } -} \ No newline at end of file + }, + "dependencies": {} +}