UNPKG

1.92 kBJSONView Raw
1{
2 "name": "node-notifier",
3 "version": "5.2.1",
4 "description":
5 "A Node.js module for sending notifications on native Mac, Windows (post and pre 8) and Linux (or Growl as fallback)",
6 "main": "index.js",
7 "scripts": {
8 "precommit": "lint-staged",
9 "pretest": "npm run lint",
10 "test": "jest",
11 "example": "node ./example/message.js",
12 "example:mac": "node ./example/advanced.js",
13 "example:mac:input": "node ./example/macInput.js",
14 "example:windows": "node ./example/toaster.js",
15 "lint": "eslint example/*.js lib/*.js notifiers/*.js test/**/*.js index.js"
16 },
17 "jest": {
18 "testRegex": "/test/[^_]*.js",
19 "testEnvironment": "node",
20 "setupTestFrameworkScriptFile": "./test/_test-matchers.js"
21 },
22 "repository": {
23 "type": "git",
24 "url": "git+ssh://git@github.com/mikaelbr/node-notifier.git"
25 },
26 "keywords": [
27 "notification center",
28 "mac os x 10.8",
29 "notify",
30 "terminal-notifier",
31 "notify-send",
32 "growl",
33 "windows 8 notification",
34 "toaster",
35 "notification"
36 ],
37 "author": "Mikael Brevik",
38 "license": "MIT",
39 "devDependencies": {
40 "eslint": "^4.15.0",
41 "eslint-config-semistandard": "^12.0.0",
42 "eslint-config-standard": "^11.0.0-beta.0",
43 "eslint-plugin-import": "^2.8.0",
44 "eslint-plugin-node": "^5.2.1",
45 "eslint-plugin-promise": "^3.6.0",
46 "eslint-plugin-standard": "^3.0.1",
47 "husky": "^0.14.3",
48 "jest": "^22.0.6",
49 "lint-staged": "^6.0.0",
50 "prettier": "^1.10.2"
51 },
52 "dependencies": {
53 "growly": "^1.3.0",
54 "semver": "^5.4.1",
55 "shellwords": "^0.1.1",
56 "which": "^1.3.0"
57 },
58 "lint-staged": {
59 "*.{js,json,css,md}": ["prettier --write", "git add"]
60 },
61 "bugs": {
62 "url": "https://github.com/mikaelbr/node-notifier/issues"
63 },
64 "homepage": "https://github.com/mikaelbr/node-notifier#readme",
65 "directories": {
66 "example": "example",
67 "test": "test"
68 }
69}