UNPKG

artik-io

Version:

GPIO library for Artik devices. It gives possibility to communicate with Gpio from Node.js enviroment.

81 lines (80 loc) 1.86 kB
{ "name": "artik-io", "version": "1.0.1", "description": "GPIO library for Artik devices. It gives possibility to communicate with Gpio from Node.js enviroment.", "main": "index.js", "directories": { "examples": "build/examples", "test": "tests" }, "repository": { "type": "git", "url": "https://github.com/bkoper/artik-io.git" }, "keywords": [ "artik", "artik-suite", "artik-io", "gpio" ], "files": [ "dist", "index.js", "README.md" ], "scripts": { "cover": "nyc npm t", "check-coverage": "nyc check-coverage --statements 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 --out-dir build", "prebuild:prod": "rm -rf dist", "build:prod": "babel src --out-dir dist" }, "author": "Bartłomiej Koper <bkoper@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/bkoper/artik-io/issues" }, "homepage": "https://github.com/bkoper/artik-io#readme", "devDependencies": { "babel-cli": "^6.8.0", "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", "babel-preset-es2015": "^6.3.13", "chai": "^3.5.0", "codecov": "^1.0.1", "eslint": "^2.8.0", "eventemitter3": "^1.1.1", "ghooks": "^1.2.1", "istanbul": "^0.4.2", "jscs": "^3.0.3", "mocha": "^2.4.5", "nyc": "^6.4.0", "sinon": "^1.17.4" }, "babel": { "presets": [ "es2015" ], "plugins": [ "transform-es2015-modules-commonjs" ] }, "nyc": { "include": [ "src" ], "reporter": [ "lcov" ] }, "config": { "ghooks": { "pre-commit": "npm run lint" } }, "dependencies": {} }