uci-mcp/package.json

47 lines
1.6 KiB
JSON
Raw Normal View History

2017-01-12 20:05:20 -08:00
{
"name": "@uci/mcp",
"main": "src",
2020-07-26 15:45:03 -07:00
"version": "0.3.3",
"description": "Classes and Helper Functions for using the MCP chip on I2C Bus",
2017-01-12 20:05:20 -08:00
"scripts": {
"outputs": "./node_modules/.bin/nodemon -r esm --preserve-symlinks examples/outputs",
"switches": "node -r esm -preserve-symlinks examples/switches",
"switches:dev": "UCI_ENV=dev ESM_DISABLE_CACHE=true ./node_modules/.bin/nodemon -r esm --preserve-symlinks examples/switches",
2019-08-15 14:05:27 -07:00
"swrl": "UCI_ENV=dev node -r esm examples/mcp-switch-relay",
2018-05-16 07:19:03 -07:00
"swr": "node -r esm examples/mcp-switch-relay",
"test": "./node_modules/.bin/mocha --reporter list --timeout 30000",
"testw": "./node_modules/.bin/mocha --reporter list -- watch --timeout 30000",
"sample": "node demo/sample.js",
"inter": "sudo node -r esm examples/interrupt",
"yalcu": "./node_modules/.bin/nodemon --watch /home/sysadmin/.yalc/**/*.js --exec /opt/node-global-apps/bin/yalc update"
2017-01-12 20:05:20 -08:00
},
"author": "David Kebler",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/uCOMmandIt/uci-mcp.git"
},
"keywords": [
"node.js",
"microchip",
"i2c"
],
"bugs": {
"url": "https://github.com/uCOMmandIt/uci-mcp/issues"
},
"homepage": "https://github.com/uCOMmandIt/uci-mcp#readme",
"dependencies": {
"@uci-utils/byte": "^0.2.3",
2020-07-26 15:45:03 -07:00
"@uci-utils/logger": "0.0.18",
"@uci/i2c-device": "^0.3.1"
2017-01-12 20:05:20 -08:00
},
"devDependencies": {
2019-08-15 14:05:27 -07:00
"chai": "^4.2.0",
"esm": "^3.2.25",
"fs-read-data": "^1.0.4",
2020-07-26 15:45:03 -07:00
"mocha": "^8.0.1",
"nodemon": "^2.0.4",
"ondeath": "^1.0.0"
2017-01-12 20:05:20 -08:00
}
}