forked from unbalanced/grunt-simple-watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "grunt-simple-watch",
"title": "simple watch will watch your files without using fs.watch or fs.watchFile",
"description": "no need to change your gruntfile configurations",
"version": "0.1.2",
"homepage": "https://github.com/unbalanced/grunt-simple-watch",
"author": {
"name": "Amir Souchami",
"email": "[email protected]",
"url": ""
},
"repository": {
"type": "git",
"url": "git://github.com/unbalanced/grunt-simple-watch.git"
},
"bugs": {
"url": "https://github.com/unbalanced/grunt-simple-watch/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/unbalanced/grunt-simple-watch/blob/master/LICENSE-MIT"
},
{
"type": "GPL",
"url": "https://github.com/unbalanced/grunt-simple-watch/blob/master/LICENSE-GPL"
}
],
"main": "grunt.js",
"engines": {
"node": "*"
},
"scripts": {
"test": "grunt simple_watch"
},
"keywords": [
"grunt.js",
"gruntplugin",
"grunttask",
"watch"
],
"dependencies": [],
"devDependencies": {
"grunt": "~0.4.0",
"grunt-contrib-jshint": "~0.1.1",
"grunt-contrib-nodeunit": "~0.1.2",
"grunt-contrib-watch": "~0.3.1"
}
}