diff --git a/Makefile b/Makefile index 86ce81b..29a7c10 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,8 @@ # Licensed under MIT. # Copyright (2016) by Kevin van Zonneveld https://twitter.com/kvz # +# https://www.npmjs.com/package/fakefile +# # This Makefile offers convience shortcuts into any Node.js project that utilizes npm scripts. # It functions as a wrapper around the actual listed in `package.json` # So instead of typing: @@ -32,3 +34,7 @@ $$(TARGETS): endef $(eval $(call npm_script_targets)) + +# These npm run scripts are available, without needing to be mentioned in `package.json` +install: + npm run install diff --git a/package.json b/package.json index be7a027..f9e574f 100644 --- a/package.json +++ b/package.json @@ -25,20 +25,21 @@ "eslint-config-standard": "4.4.0", "eslint-plugin-standard": "1.3.1", "frey": "kvz/frey#8017ffb972632392da2b34f2ba40ac98bb7cc3f0", - "nodemon": "^1.8.1" + "nodemon": "1.8.1" }, "dependencies": { - "dropbox": "^0.10.3", - "google-auth-library": "^0.9.7", - "googleapis": "^2.1.7", - "grant-koa": "^3.5.3", - "instagram-node": "^0.5.8", - "koa": "^1.1.2", + "dropbox": "0.10.3", + "fakefile": "0.0.8", + "google-auth-library": "0.9.7", + "googleapis": "2.1.7", + "grant-koa": "3.5.3", + "instagram-node": "0.5.8", + "koa": "1.1.2", "koa-cors": "0.0.16", - "koa-mount": "^1.3.0", - "koa-router": "^5.3.0", - "koa-session": "^3.3.1", - "koa-qs": "^2.0.0", - "purest": "^2.0.0" + "koa-mount": "1.3.0", + "koa-qs": "2.0.0", + "koa-router": "5.3.0", + "koa-session": "3.3.1", + "purest": "2.0.0" } }