diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..402ceea --- /dev/null +++ b/.travis.yml @@ -0,0 +1,22 @@ +language: node_js +node_js: + - "node" + - "6.1" + - "6.0" + - "5.11" + - "5.10" + - "5.9" + - "5.8" + - "5.7" + - "5.6" + - "5.5" + - "5.4" + - "5.3" + - "5.2" + - "5.1" + - "5.0" + - "4.4" + - "4.3" + - "4.2" + - "4.1" + - "4.0" diff --git a/README.md b/README.md index b4fe16d..c14b074 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ yarn add grunt-standard --dev - You have the latest version of `grunt` in your project's `package.json`'s `devDependencies`. - You have added the npm task to your project's `Gruntfile.js`. -- You are running the latest version of `node`. +- You are running `node >= 4`. ```javascript grunt.loadNpmTasks('grunt-standard') diff --git a/package.json b/package.json index 903b4d9..835952c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "grunt-standard", - "version": "3.0.2", + "version": "3.0.3", "description": "Grunt Plugin for JavaScript Standard Style Linting and Formatting", "main": "Gruntfile.js", "repository": { @@ -30,7 +30,7 @@ "grunt": "^1.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=4.0" }, "homepage": "https://github.com/EasyAsABC123/grunt-standard", "standard": { @@ -42,6 +42,6 @@ "outdated": "npm outdated --depth 0", "postshrinkwrap": "grunt validate-shrinkwrap --force", "shrinkwrap": "npm-shrinkwrap --dev", - "test": "standard" + "test": "grunt" } }