Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
* feat(core): node engine update, adding cleanup and reinstall npm sc…
Browse files Browse the repository at this point in the history
…ripts

Node engine updates and package.json additional scripts (#1567)
* updated cleanup with 'npm cache clean' as well
  • Loading branch information
lirantal authored Oct 15, 2016
1 parent b9129a3 commit b40cd2d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ module.exports = {
},
env: {
node: true,
es6: true,
browser: true,
jasmine: true,
mocha: true,
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@
"url": "https://github.com/meanjs/mean.git"
},
"engines": {
"node": ">=0.12.0",
"npm": ">=2.0.0"
"node": ">=4.6.0",
"npm": ">=3.10.8"
},
"scripts": {
"update": "npm update && npm prune && bower install --allow-root && bower prune --allow-root",
"clean": "rm -rf node_modules/ public/lib/",
"reinstall": "npm cache clean && npm run clean && npm install",
"start": "gulp",
"start:prod": "gulp prod",
"start:debug": "node-debug --web-host 0.0.0.0 server.js & gulp debug",
Expand Down

0 comments on commit b40cd2d

Please sign in to comment.