timwis / soda-geoservices

Query Esri Geoservices using a SODA2-style API
MIT License
7 stars 0 forks source link

package.json, license, linter fixes #14

Closed ungoldman closed 8 years ago

ungoldman commented 8 years ago

Hi @timwis!

Cool project! I added a couple things and fixed a couple things, feel free to merge or toss this out if you don't agree as some of the package.json fixes are a bit prescriptive.

timwis commented 8 years ago

Wow Nate, this is awesome - thank you! Definitely learnt something here - especially on item 3 - that will save me a lot of time trying to hunt down the binaries. I didn't realize node figured that out for non global packages. Thanks!

ungoldman commented 8 years ago

@timwis yep, anything that is installed in node_modules and has a bin property in its package.json will be symlinked into node_modules/.bin and accessible by npm scripts. I also add ./node_modules/.bin to my path so I can run commands in node projects using the project-specific binaries (example). Glad I was able to contribute :)