UNPKG

artik-io-devices

Version:

This is part of the project [artik-io project](https://github.com/bkoper/artik-io). It contains devices that uses Artik GPIO interface.

79 lines (78 loc) 1.92 kB
{ "name": "artik-io-devices", "version": "0.9.2", "description": "This is part of the project [artik-io project](https://github.com/bkoper/artik-io). It contains devices that uses Artik GPIO interface.", "main": "index.js", "scripts": { "cover": "nyc npm t", "check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100", "report-coverage": "cat ./coverage/lcov.info | codecov", "test": "mocha", "watch:test": "npm t -- -w", "lint": "eslint src && jscs src/*", "prebuild": "rm -rf build", "build": "babel src/devices src/examples --out-dir build", "prebuild:prod": "rm -rf dist", "build:prod": "babel src/devices --out-dir dist" }, "repository": { "type": "git", "url": "git+https://github.com/bkoper/artik-io-devices.git" }, "keywords": [ "artik", "artik-suite", "artik-io", "gpio", "gpio-devices", "artik-devices" ], "files": [ "dist", "index.js", "README.md" ], "author": "Bartłomiej Koper <contact@bkstudio.com>", "license": "MIT", "bugs": { "url": "https://github.com/bkoper/artik-io-devices/issues" }, "homepage": "https://github.com/bkoper/artik-io-devices#readme", "dependencies": { "artik-io": "^0.9.2" }, "devDependencies": { "babel-cli": "^6.8.0", "babel-plugin-transform-es2015-modules-commonjs": "^6.8.0", "babel-preset-es2015": "^6.6.0", "chai": "^3.5.0", "codecov": "^1.0.1", "eslint": "^2.9.0", "eventemitter3": "^1.2.0", "ghooks": "^1.2.1", "jscs": "^3.0.3", "mocha": "^2.4.5", "nyc": "^6.4.3" }, "babel": { "presets": [ "es2015" ], "plugins": [ "transform-es2015-modules-commonjs" ] }, "nyc": { "include": [ "src" ], "reporter": [ "lcov" ] }, "config": { "ghooks": { "pre-commit": "npm run lint" } } }