UNPKG

1.64 kBJSONView Raw
1{
2 "name": "node-notifier",
3 "version": "5.0.1",
4 "description": "A Node.js module for sending notifications on native Mac, Windows (post and pre 8) and Linux (or Growl as fallback)",
5 "main": "index.js",
6 "scripts": {
7 "pretest": "npm run lint",
8 "test": "jest",
9 "example": "node ./example/message.js",
10 "example:mac": "node ./example/advanced.js",
11 "example:mac:input": "node ./example/macInput.js",
12 "example:windows": "node ./example/toaster.js",
13 "lint": "eslint example/*.js lib/*.js notifiers/*.js test/**/*.js index.js"
14 },
15 "jest": {
16 "testRegex": "/test/[^_]*.js",
17 "testEnvironment": "node",
18 "setupTestFrameworkScriptFile": "./test/_test-matchers.js"
19 },
20 "repository": {
21 "type": "git",
22 "url": "git+ssh://git@github.com/mikaelbr/node-notifier.git"
23 },
24 "keywords": [
25 "notification center",
26 "mac os x 10.8",
27 "notify",
28 "terminal-notifier",
29 "notify-send",
30 "growl",
31 "windows 8 notification",
32 "toaster",
33 "notification"
34 ],
35 "author": "Mikael Brevik",
36 "license": "MIT",
37 "devDependencies": {
38 "eslint": "^3.13.1",
39 "eslint-config-semistandard": "^7.0.0",
40 "eslint-config-standard": "^6.2.1",
41 "eslint-plugin-promise": "^3.4.0",
42 "eslint-plugin-standard": "^2.0.1",
43 "jest": "^18.1.0"
44 },
45 "dependencies": {
46 "growly": "^1.3.0",
47 "semver": "^5.3.0",
48 "shellwords": "^0.1.0",
49 "which": "^1.2.12"
50 },
51 "bugs": {
52 "url": "https://github.com/mikaelbr/node-notifier/issues"
53 },
54 "homepage": "https://github.com/mikaelbr/node-notifier#readme",
55 "directories": {
56 "example": "example",
57 "test": "test"
58 }
59}