Package with preferGlobal as appropriate for command-line application

Per https://www.npmjs.org/doc/json.html#preferGlobal

> If your package is primarily a command-line application that should be installed globally, then set this value to true to provide a warning if it is installed locally.
>
> It doesn't actually prevent users from installing it locally, but it does help prevent some confusion if it doesn't work as expected.
This commit is contained in:
Matt Hickford
2014-03-15 00:44:38 +00:00
parent 8b15d8218d
commit c2db81d892

View File

@@ -21,6 +21,7 @@
"coffee": "./bin/coffee",
"cake": "./bin/cake"
},
"preferGlobal": true,
"scripts": {
"test": "node ./bin/cake test"
},