uci-i2c-bus/package.json

55 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2017-01-12 19:50:06 -08:00
{
"name": "@uci/i2c-bus",
"version": "0.3.1",
"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 --preserve-symlinks examples/bus",
"bus:debug": "UCI_LOG_LEVEL=debug npm run bus:dev",
"busl": "UCI_ENV=pro node --require esm examples/bus",
"yalcu": "./node_modules/.bin/nodemon --watch /home/sysadmin/.yalc/**/*.js --exec /opt/node-global-apps/bin/yalc update"
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": "^5.1.0"
},
2017-01-12 19:50:06 -08:00
"dependencies": {
"@uci-utils/logger": "^0.0.16",
"@uci/base": "^0.5.1",
"await-to-js": "^2.1.1",
"p-queue": "^6.3.0",
"pify": "^5.0.0"
2017-01-12 19:50:06 -08:00
},
"devDependencies": {
"esm": "^3.2.25",
"fs-read-data": "^1.0.4",
"nodemon": "^2.0.2",
"ondeath": "^1.0.0"
2017-01-12 19:50:06 -08:00
}
}