46 lines
1.4 KiB
JSON
46 lines
1.4 KiB
JSON
{
|
|
"name": "@uci/i2c-bus",
|
|
"version": "0.1.0",
|
|
"description": "I2c Bus Classes for Communication to I2C bus via socket or direct call",
|
|
"main": "src/bus",
|
|
"scripts": {
|
|
"busa": "node_modules/.bin/nodemon --require @std/esm --watch ../ examples/bus",
|
|
"bus": "SOCKET_DIR=/opt/sockets node_modules/.bin/nodemon --require @std/esm examples/bus",
|
|
"busl": "DEBUG=true SOCKETS_DIR=/opt/sockets node_modules/.bin/nodemon --require @std/esm examples/bus",
|
|
"test": "mocha -r @std/esm test/*.test.mjs",
|
|
"testw": "mocha -r @std/esm test/*.test.mjs --watch --recurse --watch-extensions mjs",
|
|
"testci": "istanbul cover ./node_modules/.bin/_mocha test/ --report lcovonly -- -R spec --recursive && codecov || true"
|
|
},
|
|
"author": "David Kebler",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/uCOMmandIt/i2c.git"
|
|
},
|
|
"keywords": [
|
|
"node.js",
|
|
"i2c",
|
|
"rpi",
|
|
"raspberrypi"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/uCOMmandIt/i2c/issues"
|
|
},
|
|
"homepage": "https://github.com/uCOMmandIt/i2c#readme",
|
|
"@std/esm": "cjs",
|
|
"dependencies": {
|
|
"@uci/base": "^0.1.0",
|
|
"i2c-bus": "^1.x",
|
|
"pify": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@std/esm": "^0.18.0",
|
|
"chai": "^3.5.0",
|
|
"chai-as-promised": "^6.0.0",
|
|
"codecov": "^1.0.1",
|
|
"istanbul": "^0.4.5",
|
|
"mocha": "^3.2.0",
|
|
"nodemon": "^1.14.12"
|
|
}
|
|
}
|