UNPKG

2 kBJSONView Raw
1{
2 "name": "node-notifier",
3 "version": "6.0.0",
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 "setupFilesAfterEnv": [
19 "./test/_test-matchers.js"
20 ]
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": "^6.4.0",
41 "eslint-config-semistandard": "^15.0.0",
42 "eslint-config-standard": "^14.1.0",
43 "eslint-plugin-import": "^2.18.2",
44 "eslint-plugin-node": "^10.0.0",
45 "eslint-plugin-promise": "^4.2.1",
46 "eslint-plugin-standard": "^4.0.1",
47 "husky": "^3.0.5",
48 "jest": "^24.9.0",
49 "lint-staged": "^9.3.0",
50 "prettier": "^1.18.2"
51 },
52 "dependencies": {
53 "growly": "^1.3.0",
54 "is-wsl": "^2.1.1",
55 "semver": "^6.3.0",
56 "shellwords": "^0.1.1",
57 "which": "^1.3.1"
58 },
59 "husky": {
60 "hooks": {
61 "pre-commit": "lint-staged"
62 }
63 },
64 "lint-staged": {
65 "*.{js,json,css,md}": [
66 "prettier --write",
67 "git add"
68 ]
69 },
70 "bugs": {
71 "url": "https://github.com/mikaelbr/node-notifier/issues"
72 },
73 "homepage": "https://github.com/mikaelbr/node-notifier#readme",
74 "directories": {
75 "example": "example",
76 "test": "test"
77 }
78}