grunt-contrib-watch/package.json

42 lines
903 B
JSON
Raw Normal View History

2012-10-17 09:59:55 +08:00
{
"name": "grunt-contrib-watch",
2015-02-08 21:09:04 +08:00
"description": "Run predefined tasks whenever watched file patterns are added, changed or deleted",
2014-03-20 04:09:32 +08:00
"version": "0.6.1",
2012-10-17 09:59:55 +08:00
"author": {
"name": "Grunt Team",
"url": "http://gruntjs.com/"
},
2015-02-08 21:09:04 +08:00
"repository": "gruntjs/grunt-contrib-watch",
"license": "MIT",
2012-10-17 09:59:55 +08:00
"engines": {
2015-02-08 21:09:04 +08:00
"node": ">=0.10.0"
2012-10-17 09:59:55 +08:00
},
2016-01-30 11:26:26 +08:00
"main": "tasks/watch.js",
2012-10-17 09:59:55 +08:00
"scripts": {
"test": "grunt test -v"
2012-10-17 09:59:55 +08:00
},
"dependencies": {
2015-02-08 21:09:04 +08:00
"gaze": "^0.5.1",
2016-01-01 09:49:23 +08:00
"tiny-lr": "^0.2.1",
"lodash": "^3.10.1",
"async": "^1.5.0"
2012-10-17 09:59:55 +08:00
},
"devDependencies": {
2015-02-08 21:09:04 +08:00
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-internal": "^0.4.7",
2016-01-01 09:49:23 +08:00
"grunt-contrib-jshint": "^0.11.3",
2015-02-08 21:09:04 +08:00
"grunt-contrib-nodeunit": "^0.4.1",
2015-10-11 18:27:34 +08:00
"grunt-jscs": "^2.1.0",
2016-01-01 09:49:23 +08:00
"underscore.string": "^3.2.2"
2012-10-17 09:59:55 +08:00
},
"keywords": [
"gruntplugin",
2015-02-08 21:09:04 +08:00
"watch",
"livereload"
],
"files": [
2015-02-08 21:09:04 +08:00
"tasks"
2012-10-17 09:59:55 +08:00
]
2016-01-30 11:26:26 +08:00
}