Add npm (v3 or greater) as a README dependency

Experienced an error to do with the way npm handles its dependency
paths.
[Basic idea is here](https://docs.npmjs.com/how-npm-works/npm3#npm-v3-dependency-resolution).

My npm v2.x.x was failing because it couldn't find my Hogan library.
Upgrading npm, nuking `node_modules` and reinstalling/rebuilding
finally fixed everything.
This commit is contained in:
Paul Craig
2016-11-21 17:24:26 +00:00
parent 9cf1fea395
commit bb43bfb024

View File

@@ -22,7 +22,8 @@ Brew is a package manager for OSX. The following command installs brew:
Languages needed
- Python 3.4
- [Node](http://nodejs.org/) 5.0.0 or greater
- [Node](https://nodejs.org/) 5.0.0 or greater
- [npm](https://www.npmjs.com/) 3.0.0 or greater
```shell
brew install node
```