homebridge-savant
Version:
Savant platform plugin for homebridge: https://github.com/nfarina/homebridge
72 lines (71 loc) • 2.45 kB
JSON
{
"name": "homebridge-savant",
"version": "1.0.5",
"description": "Savant platform plugin for homebridge: https://github.com/nfarina/homebridge",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"start": "run-p -ln build-watch test-watch",
"clean": "run-p -ln clean-lib clean-doc clean-test",
"clean-lib": "rimraf lib",
"clean-doc": "rimraf doc",
"clean-test": "rimraf coverage.lcov",
"prebuild": "npm run clean",
"build": "babel src/lib -d lib",
"build-watch": "npm run build -- --watch",
"pretest-mocha": "npm run build",
"test-mocha": "mocha --harmony --es_staging --require test/require",
"test": "nyc npm run test-mocha",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test-watch": "npm run test-mocha -- --watch",
"prerelease": "npm run test",
"release": "npm version patch && npm publish",
"postrelease": "npm run release-gh-pages",
"prerelease-gh-pages": "npm run doc",
"release-gh-pages": "run-s -ln gh-pages-subtree gh-pages-push gh-pages-delete",
"postrelease-gh-pages": "npm run clean-doc && npm run git-save -- clean && git push -u origin master --follow-tags",
"predoc": "rimraf doc",
"doc": "esdoc -c ./esdoc.json && ncp CNAME doc/CNAME",
"postdoc": "npm run git-save -- doc",
"gh-pages-subtree": "git subtree split --prefix doc -b gh-pages",
"gh-pages-push": "git push -f origin gh-pages:gh-pages",
"gh-pages-delete": "git branch -D gh-pages",
"git-save": "git add -A && git commit -am ",
"upgrade": "ncu -a && npm update"
},
"dependencies": {
"chai": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "latest",
"codecov": "^1.0.1",
"esdoc": "^0.4.6",
"esdoc-es7-plugin": "0.0.3",
"mocha": "latest",
"ncp": "^2.0.0",
"npm-run-all": "^2.1.1",
"nyc": "^6.4.4",
"rewire": "^2.5.1",
"rimraf": "^2.5.2"
},
"repository": {
"type": "git",
"url": "git://github.com/wallwitz/homebridge-savant.git"
},
"keywords": [
"homebridge-plugin",
"savant",
"homebridge"
],
"author": "Horst von Wallwitz <horstsilva@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/wallwitz/homebridge-savant/issues"
},
"homepage": "https://github.com/wallwitz/homebridge-savant#readme"
}