package.json 1009 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "hydrawise-api",
  3. "version": "0.0.1",
  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": "lib/index.js",
  10. "scripts": {
  11. "build": "./node_modules/.bin/babel -d lib src/",
  12. "test": "xo && ava",
  13. "prepublish": "npm run build"
  14. },
  15. "keywords": [
  16. "hydrawise",
  17. "api",
  18. "iot"
  19. ],
  20. "author": "Paul Molluzzo (https://paul.molluzzo.com)",
  21. "license": "MIT",
  22. "devDependencies": {
  23. "ava": "^0.14.0",
  24. "babel-cli": "^6.8.0",
  25. "babel-preset-es2015": "^6.6.0",
  26. "babel-preset-stage-2": "^6.5.0",
  27. "xo": "^0.15.0"
  28. },
  29. "xo": {
  30. "esnext": true,
  31. "envs": [
  32. "browser"
  33. ],
  34. "rules": {
  35. "new-cap": 0,
  36. "camelcase": [0, {"properties": "always"}]
  37. },
  38. "ignores": ["lib/**"],
  39. "space": true
  40. },
  41. "engines": {
  42. "node": "4.4.0",
  43. "npm": "3.8.0"
  44. },
  45. "dependencies": {
  46. "request-promise": "^3.0.0"
  47. }
  48. }