1
0

package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "hydrawise-api",
  3. "version": "1.2.3",
  4. "description": "Library for accessing the Hydrawise API via the cloud or directly on the local network",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://git.kunago.com/kunago/node-hydrawise-api.git"
  8. },
  9. "main": "dist/index.js",
  10. "type": "commonjs",
  11. "types": "./dist/index.d.ts",
  12. "keywords": [
  13. "hydrawise",
  14. "api",
  15. "iot",
  16. "sprinklers",
  17. "hunter",
  18. "hunter industries"
  19. ],
  20. "scripts": {
  21. "clean": "rimraf ./dist",
  22. "build": "rimraf ./dist && tsc",
  23. "prepublishOnly": "npm run build",
  24. "postpublish": "npm run clean",
  25. "test": "echo \"Error: no test specified\" && exit 1"
  26. },
  27. "contributors": [
  28. "Miroslav Abrahám",
  29. "Martijn Dierckx",
  30. "Paul Molluzzo (https://paul.molluzzo.com)"
  31. ],
  32. "license": "MIT",
  33. "engines": {
  34. "node": ">=16.0.0",
  35. "npm": ">=8.1.0"
  36. },
  37. "dependencies": {
  38. "axios": "^1.4.0"
  39. },
  40. "devDependencies": {
  41. "@types/node": "^18.16.8",
  42. "rimraf": "^5.0.0",
  43. "typescript": "^5.0.4"
  44. }
  45. }