uci-mcp/package.json

45 lines
1.3 KiB
JSON
Raw Normal View History

2017-01-12 20:05:20 -08:00
{
"name": "@uci/mcp",
"main": "src/mcp230xx-packet.mjs",
2017-10-18 17:34:34 -07:00
"version": "0.1.2",
"description": "Classes and Helper Functions for using the MCP chip on I2C Bus",
2017-01-12 20:05:20 -08:00
"scripts": {
"relays": "SOCKETS_DIR=/opt/sockets node --require @std/esm examples/relays",
"test": "./node_modules/.bin/mocha --reporter list --timeout 30000",
"testw": "./node_modules/.bin/mocha --reporter list -- watch --timeout 30000",
"testibc": "istanbul cover ./node_modules/.bin/_mocha test/ --report lcovonly -- -R spec --recursive && codecov || true",
"sample": "node demo/sample.js",
"inter": "sudo node -r @std/esm examples/interrupt"
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/i2c-device": "^0.1.1",
"@uci/logger": "0.0.1",
"@uci/utils": "^0.1.1"
2017-01-12 20:05:20 -08:00
},
"@std/esm": "cjs",
2017-01-12 20:05:20 -08:00
"devDependencies": {
"@std/esm": "^0.22.0",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"debug": "^3.1.0",
2017-01-12 20:05:20 -08:00
"istanbul": "^0.4.5",
"mocha": "^5.0.1",
"nodemon": "^1.15.1"
2017-01-12 20:05:20 -08:00
}
}