package.json 998 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. ],
  19. "author": "Paul Molluzzo (https://paul.molluzzo.com)",
  20. "license": "MIT",
  21. "devDependencies": {
  22. "ava": "^0.14.0",
  23. "babel-cli": "^6.8.0",
  24. "babel-preset-es2015": "^6.6.0",
  25. "babel-preset-stage-2": "^6.5.0",
  26. "xo": "^0.15.0"
  27. },
  28. "xo": {
  29. "esnext": true,
  30. "envs": [
  31. "browser"
  32. ],
  33. "rules": {
  34. "new-cap": 0,
  35. "camelcase": [0, {"properties": "always"}]
  36. },
  37. "ignores": ["lib/**"],
  38. "space": true
  39. },
  40. "engines": {
  41. "node": "4.4.0",
  42. "npm": "3.8.0"
  43. },
  44. "dependencies": {
  45. "request-promise": "^3.0.0"
  46. }
  47. }