Added new LTS node version and included NPM run scripts, fixes #803

This commit is contained in:
Gion Kunz 2016-10-21 18:20:31 +02:00
parent fd1dac175f
commit 8916ee643b
2 changed files with 8 additions and 3 deletions

2
.nvmrc
View File

@ -1,2 +1,2 @@
v5.5.0
v6.9.0

View File

@ -73,10 +73,15 @@
"time-grunt": "^1.0.0"
},
"engines": {
"node": ">=5.5.0"
"node": ">=6.9.0"
},
"scripts": {
"test": "grunt test"
"start": "./node_modules/.bin/grunt",
"test": "./node_modules/.bin/grunt test",
"dev": "./node_modules/.bin/grunt dev",
"build": "./node_modules/.bin/grunt build",
"preview": "./node_modules/.bin/grunt preview",
"public": "./node_modules/.bin/grunt public"
},
"config": {
"banner": "/* Chartist.js <%= pkg.version %>\n * Copyright © <%= year %> Gion Kunz\n * Free to use under either the WTFPL license or the MIT license.\n * https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-WTFPL\n * https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-MIT\n */\n",