UNPKG

pimote

Version:

Control Energenie Switches from a Raspberry Pi

38 lines (37 loc) 1.07 kB
{ "name": "pimote", "version": "1.1.7", "description": "Control Energenie Switches from a Raspberry Pi", "main": "lib/pimote.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "watch": "coffee --watch --compile --output lib src &", "build-bin": "mkdir -p bin; coffee --compile -s < src/cli.coffee | sed '1i#!/usr/bin/env node' > bin/cli.js", "build-lib": "coffee --compile --output lib src/pimote.coffee", "build": "npm run build-lib; npm run build-bin", "prepublishOnly": "npm run-script build" }, "bin": { "pimote": "./bin/cli.js" }, "repository": { "type": "git", "url": "git+https://github.com/CliffS/pimote.git" }, "keywords": [ "pimote", "Energenie" ], "author": "Cliff Stanford <cliff@may.be>", "license": "Unlicense", "bugs": { "url": "https://github.com/CliffS/pimote/issues" }, "homepage": "https://github.com/CliffS/pimote#readme", "dependencies": { "rpio": "github:KryQ/node-rpio" }, "devDependencies": { "coffeescript": "^2.6.1" } }