|
|
@@ -0,0 +1,47 @@
|
|
|
+{
|
|
|
+ "name": "hydrawise-api",
|
|
|
+ "version": "0.0.1",
|
|
|
+ "description": "Library for accessing the Hydrawise API",
|
|
|
+ "repository": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/paulmolluzzo/hydrawise-api.git"
|
|
|
+ },
|
|
|
+ "main": "lib/index.js",
|
|
|
+ "scripts": {
|
|
|
+ "build": "./node_modules/.bin/babel -d lib src/",
|
|
|
+ "test": "xo && ava",
|
|
|
+ "prepublish": "npm run build"
|
|
|
+ },
|
|
|
+ "keywords": [
|
|
|
+ "hydrawise",
|
|
|
+ "api"
|
|
|
+ ],
|
|
|
+ "author": "Paul Molluzzo (https://paul.molluzzo.com)",
|
|
|
+ "license": "MIT",
|
|
|
+ "devDependencies": {
|
|
|
+ "ava": "^0.14.0",
|
|
|
+ "babel-cli": "^6.8.0",
|
|
|
+ "babel-preset-es2015": "^6.6.0",
|
|
|
+ "babel-preset-stage-2": "^6.5.0",
|
|
|
+ "xo": "^0.15.0"
|
|
|
+ },
|
|
|
+ "xo": {
|
|
|
+ "esnext": true,
|
|
|
+ "envs": [
|
|
|
+ "browser"
|
|
|
+ ],
|
|
|
+ "rules": {
|
|
|
+ "new-cap": 0,
|
|
|
+ "camelcase": [0, {"properties": "always"}]
|
|
|
+ },
|
|
|
+ "ignores": ["lib/**"],
|
|
|
+ "space": true
|
|
|
+ },
|
|
|
+ "engines": {
|
|
|
+ "node": "4.4.0",
|
|
|
+ "npm": "3.8.0"
|
|
|
+ },
|
|
|
+ "dependencies": {
|
|
|
+ "request-promise": "^3.0.0"
|
|
|
+ }
|
|
|
+}
|