forked from mikaelbr/gulp-notify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
50
{
"name": "gulp-notify",
"version": "2.2.0",
"description": "gulp plugin to send messages based on Vinyl Files or Errors to Mac OS X, Linux or Windows using the node-notifier module. Fallbacks to Growl or simply logging",
"keywords": [
"gulpplugin",
"notify",
"gulp",
"notification",
"reporter",
"windows notification",
"mac notification",
"notify-send",
"notify-osd",
"growl"
],
"homepage": "https://github.com/mikaelbr/gulp-notify",
"bugs": "https://github.com/mikaelbr/gulp-notify/issues",
"author": {
"name": "Mikael Brevik",
"email": "[email protected]",
"url": "https://github.com/mikaelbr"
},
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/mikaelbr/gulp-notify.git"
},
"scripts": {
"test": "mocha -R spec"
},
"dependencies": {
"gulp-util": "^3.0.2",
"lodash.template": "^3.0.0",
"node-notifier": "^4.1.0",
"node.extend": "^1.1.3",
"through2": "^0.6.3"
},
"devDependencies": {
"gulp": "^3.8.10",
"gulp-plumber": "^0.6.6",
"mocha": "^2.1.0",
"should": "^4.6.1"
},
"engines": {
"node": ">=0.8.0",
"npm": ">=1.2.10"
},
"license": "MIT"
}