2022-01-21 08:28:41 +00:00
|
|
|
{
|
2022-04-08 10:55:35 +00:00
|
|
|
"name": "node-notifier",
|
|
|
|
"version": "5.4.5",
|
2022-01-21 08:28:41 +00:00
|
|
|
"description": "A Node.js module for sending notifications on native Mac, Windows (post and pre 8) and Linux (or Growl as fallback)",
|
2022-04-08 10:55:35 +00:00
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
|
|
|
"precommit": "lint-staged",
|
|
|
|
"pretest": "npm run lint",
|
|
|
|
"test": "jest",
|
|
|
|
"example": "node ./example/message.js",
|
|
|
|
"example:mac": "node ./example/advanced.js",
|
|
|
|
"example:mac:input": "node ./example/macInput.js",
|
|
|
|
"example:windows": "node ./example/toaster.js",
|
|
|
|
"lint": "eslint example/*.js lib/*.js notifiers/*.js test/**/*.js index.js"
|
2022-01-21 08:28:41 +00:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"testRegex": "/test/[^_]*.js",
|
|
|
|
"testEnvironment": "node",
|
|
|
|
"setupTestFrameworkScriptFile": "./test/_test-matchers.js"
|
|
|
|
},
|
2022-04-08 10:55:35 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+ssh://git@github.com/mikaelbr/node-notifier.git"
|
|
|
|
},
|
2022-01-21 08:28:41 +00:00
|
|
|
"keywords": [
|
|
|
|
"notification center",
|
|
|
|
"mac os x 10.8",
|
|
|
|
"notify",
|
|
|
|
"terminal-notifier",
|
|
|
|
"notify-send",
|
|
|
|
"growl",
|
|
|
|
"windows 8 notification",
|
|
|
|
"toaster",
|
|
|
|
"notification"
|
|
|
|
],
|
2022-04-08 10:55:35 +00:00
|
|
|
"author": "Mikael Brevik",
|
2022-01-21 08:28:41 +00:00
|
|
|
"license": "MIT",
|
2022-04-08 10:55:35 +00:00
|
|
|
"devDependencies": {
|
|
|
|
"eslint": "^5.12.1",
|
|
|
|
"eslint-config-semistandard": "^13.0.0",
|
|
|
|
"eslint-config-standard": "^12.0.0",
|
|
|
|
"eslint-plugin-import": "^2.15.0",
|
|
|
|
"eslint-plugin-node": "^8.0.1",
|
|
|
|
"eslint-plugin-promise": "^4.0.1",
|
|
|
|
"eslint-plugin-standard": "^4.0.0",
|
|
|
|
"husky": "^1.3.1",
|
|
|
|
"jest": "^23.2.0",
|
|
|
|
"lint-staged": "^8.1.0",
|
|
|
|
"prettier": "^1.12.1"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"growly": "^1.3.0",
|
|
|
|
"is-wsl": "^1.1.0",
|
|
|
|
"semver": "^5.5.0",
|
|
|
|
"shellwords": "^0.1.1",
|
|
|
|
"which": "^1.3.0"
|
|
|
|
},
|
2022-01-21 08:28:41 +00:00
|
|
|
"lint-staged": {
|
|
|
|
"*.{js,json,css,md}": [
|
|
|
|
"prettier --write",
|
|
|
|
"git add"
|
|
|
|
]
|
|
|
|
},
|
2022-04-08 10:55:35 +00:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/mikaelbr/node-notifier/issues"
|
2022-02-23 16:41:13 +00:00
|
|
|
},
|
2022-04-08 10:55:35 +00:00
|
|
|
"homepage": "https://github.com/mikaelbr/node-notifier#readme",
|
|
|
|
"directories": {
|
|
|
|
"example": "example",
|
|
|
|
"test": "test"
|
|
|
|
}
|
2022-01-21 08:28:41 +00:00
|
|
|
}
|