uci-i2c-bus/package.json

52 lines
1.5 KiB
JSON
Raw Normal View History

2017-01-12 19:50:06 -08:00
{
"name": "@uci/i2c-bus",
2018-02-17 18:27:25 -08:00
"version": "0.1.2",
"description": "I2c Bus Classes for Communication to I2C bus via socket or direct call",
2018-02-17 18:27:25 -08:00
"main": "src/bus-packet.mjs",
2017-01-12 19:50:06 -08:00
"scripts": {
"irelay": "node --require @std/esm examples/ipc-relay",
"iscan": "node --require @std/esm examples/ipc-scan || true",
"tscan": "node --require @std/esm examples/tcp-scan || true",
"bus": "node --require @std/esm examples/bus",
"busl": "DEBUG=true node --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"
2017-01-12 19:50:06 -08:00
},
"author": "David Kebler",
"license": "MIT",
"repository": {
"type": "git",
2017-01-13 19:51:55 -08:00
"url": "git+https://github.com/uCOMmandIt/i2c.git"
2017-01-12 19:50:06 -08:00
},
"keywords": [
"node.js",
"i2c",
"rpi",
"raspberrypi"
2017-01-12 19:50:06 -08:00
],
"bugs": {
2017-01-13 19:51:55 -08:00
"url": "https://github.com/uCOMmandIt/i2c/issues"
2017-01-12 19:50:06 -08:00
},
2017-01-13 19:51:55 -08:00
"homepage": "https://github.com/uCOMmandIt/i2c#readme",
"@std/esm": "cjs",
"optionalDependencies": {
"i2c-bus": "^1.x"
},
2017-01-12 19:50:06 -08:00
"dependencies": {
"@uci/base": "^0.1.0",
"@uci/logger": "0.0.1",
"better-try-catch": "^0.6.2",
"pify": "^3.0.0"
2017-01-12 19:50:06 -08:00
},
"devDependencies": {
"@std/esm": "^0.18.0",
2017-01-12 19:50:06 -08:00
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
2017-01-12 19:50:06 -08:00
"codecov": "^1.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"nodemon": "^1.14.12"
2017-01-12 19:50:06 -08:00
}
}