package.json 789 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "hydrawise-api",
  3. "version": "0.1.0",
  4. "description": "Library for accessing the Hydrawise API",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/paulmolluzzo/hydrawise-api.git"
  8. },
  9. "main": "index.js",
  10. "scripts": {
  11. "test": "xo && ava"
  12. },
  13. "keywords": [
  14. "hydrawise",
  15. "api",
  16. "iot"
  17. ],
  18. "author": "Paul Molluzzo (https://paul.molluzzo.com)",
  19. "license": "MIT",
  20. "devDependencies": {
  21. "ava": "^0.14.0",
  22. "xo": "^0.15.0"
  23. },
  24. "xo": {
  25. "esnext": true,
  26. "envs": [
  27. "browser"
  28. ],
  29. "rules": {
  30. "new-cap": 0,
  31. "camelcase": [0, {"properties": "always"}]
  32. },
  33. "space": true
  34. },
  35. "engines": {
  36. "node": ">=6.0.0",
  37. "npm": "3.8.0"
  38. },
  39. "dependencies": {
  40. "request-promise": "^3.0.0"
  41. }
  42. }