package.json 694 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "growl",
  3. "version": "1.10.5",
  4. "description": "Growl unobtrusive notifications",
  5. "author": "TJ Holowaychuk <tj@vision-media.ca>",
  6. "maintainers": [
  7. "Joshua Boy Nicolai Appelman <joshua@jbnicolai.nl>",
  8. "Timo Sand <timo.sand@iki.fi>"
  9. ],
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/tj/node-growl.git"
  13. },
  14. "main": "./lib/growl.js",
  15. "license": "MIT",
  16. "devDependencies": {
  17. "eslint": "^4.8.0",
  18. "eslint-config-airbnb-base": "^12.0.1",
  19. "eslint-plugin-import": "^2.7.0",
  20. "eslint-plugin-node": "^5.2.0"
  21. },
  22. "scripts": {
  23. "test": "node test.js",
  24. "lint": "eslint --ext js lib "
  25. },
  26. "engines": {
  27. "node": ">=4.x"
  28. }
  29. }