uci-i2c-bus/package.json

52 lines
1.6 KiB
JSON
Raw Normal View History

2017-01-12 19:50:06 -08:00
{
"name": "@uci/i2c-bus",
"version": "0.1.23",
"description": "I2c Bus Classes for Communication to I2C bus via socket or direct call",
"main": "src/bus",
2017-01-12 19:50:06 -08:00
"scripts": {
"client": "node --require esm examples/client || true",
"client:dev": "UCI_ENV=dev ./node_modules/.bin/nodemon --watch examples --require esm --preserve-symlinks examples/client || true",
"client:pipe": "TRANSPORT=pipe npm run client",
"client:pipe:dev": "TRANSPORT=pipe npm run client:dev",
"relays": "BUS_DEVICE=relays npm run client",
"relays:dev": "BUS_DEVICE=relays npm run client:dev",
"relays:pipe": "TRANSPORT=pipe npm run relays",
"relays:pipe:dev": "TRANSPORT=pipe npm run relays:dev",
"queue": "BUS_DEVICE=queue npm run client",
2018-05-16 07:09:52 -07:00
"bus": "node --require esm examples/bus",
"bus:dev": "UCI_ENV=dev ./node_modules/.bin/nodemon --require esm examples/bus",
"bus:debug": "UCI_LOG_LEVEL=debug npm run bus:dev",
"busl": "UCI_ENV=pro node --require esm examples/bus"
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",
"optionalDependencies": {
"i2c-bus": "^4.0.11"
},
2017-01-12 19:50:06 -08:00
"dependencies": {
2019-08-15 14:05:21 -07:00
"@uci-utils/logger": "^0.0.15",
"@uci/base": "^0.1.30",
"better-try-catch": "^0.6.2",
"p-queue": "^6.1.1",
2019-02-14 14:01:25 -08:00
"pify": "^4.0.1"
2017-01-12 19:50:06 -08:00
},
"devDependencies": {
"esm": "^3.2.25",
"nodemon": "^1.19.2"
2017-01-12 19:50:06 -08:00
}
}