minor tweaks

This commit is contained in:
Sindre Sorhus 2015-02-08 20:09:04 +07:00
parent 64ef021e7c
commit 96166b3f5a
2 changed files with 22 additions and 30 deletions

View File

@ -1,8 +1,6 @@
sudo: false
language: node_js language: node_js
node_js: node_js:
- "0.8" - 'iojs'
- "0.10" - '0.12'
install: - '0.10'
- npm install npm@1.4 -g
- npm install -g grunt-cli
- npm install

View File

@ -1,19 +1,12 @@
{ {
"name": "grunt-contrib-watch", "name": "grunt-contrib-watch",
"description": "Run predefined tasks whenever watched file patterns are added, changed or deleted.", "description": "Run predefined tasks whenever watched file patterns are added, changed or deleted",
"version": "0.6.1", "version": "0.6.1",
"homepage": "https://github.com/gruntjs/grunt-contrib-watch",
"author": { "author": {
"name": "Grunt Team", "name": "Grunt Team",
"url": "http://gruntjs.com/" "url": "http://gruntjs.com/"
}, },
"repository": { "repository": "gruntjs/grunt-contrib-watch",
"type": "git",
"url": "git://github.com/gruntjs/grunt-contrib-watch.git"
},
"bugs": {
"url": "https://github.com/gruntjs/grunt-contrib-watch/issues"
},
"licenses": [ "licenses": [
{ {
"type": "MIT", "type": "MIT",
@ -21,34 +14,35 @@
} }
], ],
"engines": { "engines": {
"node": ">= 0.8.0" "node": ">=0.10.0"
}, },
"scripts": { "scripts": {
"test": "grunt test -v" "test": "grunt test -v"
}, },
"dependencies": { "dependencies": {
"gaze": "~0.5.1", "gaze": "^0.5.1",
"tiny-lr": "~0.1.4", "tiny-lr": "^0.1.4",
"lodash": "~2.4.1", "lodash": "^2.4.1",
"async": "~0.9.0" "async": "^0.9.0"
}, },
"devDependencies": { "devDependencies": {
"grunt": "~0.4.0", "grunt": "^0.4.5",
"grunt-contrib-jshint": "~0.10.0", "grunt-cli": "^0.1.13",
"grunt-contrib-nodeunit": "~0.4.1", "grunt-contrib-internal": "^0.4.7",
"grunt-contrib-internal": "~0.4.7", "grunt-contrib-jshint": "^0.10.0",
"underscore.string": "~2.3.3", "grunt-contrib-nodeunit": "^0.4.1",
"grunt-jscs": "~1.0.0" "grunt-jscs": "^1.0.0",
"underscore.string": "^2.3.3"
}, },
"peerDependencies": { "peerDependencies": {
"grunt": "~0.4.0" "grunt": ">=0.4.0"
}, },
"keywords": [ "keywords": [
"gruntplugin", "gruntplugin",
"watch" "watch",
"livereload"
], ],
"files": [ "files": [
"tasks", "tasks"
"LICENSE-MIT"
] ]
} }