package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "web-push",
  3. "version": "3.6.7",
  4. "description": "Web Push library for Node.js",
  5. "main": "src/index.js",
  6. "bin": {
  7. "web-push": "src/cli.js"
  8. },
  9. "scripts": {
  10. "download-browser": "node --harmony ./test/helpers/download-test-browsers.js",
  11. "lint": "node ./node_modules/eslint/bin/eslint --ignore-path .gitignore '.'",
  12. "pretest": "npm run lint && npm run download-browser",
  13. "test": "nyc --reporter=lcov --reporter=text mocha -- --ui tdd test/test*"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/web-push-libs/web-push.git"
  18. },
  19. "keywords": [
  20. "web push",
  21. "push",
  22. "notifications",
  23. "push notifications"
  24. ],
  25. "author": "Marco Castelluccio",
  26. "license": "MPL-2.0",
  27. "bugs": {
  28. "url": "https://github.com/web-push-libs/web-push/issues"
  29. },
  30. "homepage": "https://github.com/web-push-libs/web-push#readme",
  31. "dependencies": {
  32. "asn1.js": "^5.3.0",
  33. "http_ece": "1.2.0",
  34. "https-proxy-agent": "^7.0.0",
  35. "jws": "^4.0.0",
  36. "minimist": "^1.2.5"
  37. },
  38. "devDependencies": {
  39. "chromedriver": "120.0.1",
  40. "del": "6.0.0",
  41. "eslint": "8.56.0",
  42. "eslint-config-airbnb": "19.0.4",
  43. "eslint-plugin-import": "2.29.1",
  44. "geckodriver": "4.3.0",
  45. "nyc": "15.1.0",
  46. "mkdirp": "3.0.1",
  47. "mocha": "10.2.0",
  48. "portfinder": "1.0.32",
  49. "selenium-assistant": "5.4.0",
  50. "sinon": "17.0.1"
  51. },
  52. "engines": {
  53. "node": ">= 16"
  54. }
  55. }