50 lines
1.7 KiB
JSON
50 lines
1.7 KiB
JSON
{
|
|
"name": "@uci/mcp",
|
|
"main": "src/mcp23008-17.js",
|
|
"version": "0.1.2",
|
|
"description": "Classes and Helper Functions for using the MCP chip on I2C Bus",
|
|
"scripts": {
|
|
"mcp": "SOCKETS_DIR=/opt/sockets node_modules/.bin/nodemon --require @std/esm examples/mcp",
|
|
"mcpl": "DEBUG=true SOCKETS_DIR=/opt/sockets node_modules/.bin/nodemon --require @std/esm examples/mcp",
|
|
"test": "./node_modules/.bin/mocha --reporter list --timeout 30000",
|
|
"testw": "./node_modules/.bin/mocha --reporter list -- watch --timeout 30000",
|
|
"testd": "DEBUG='1:*' ./node_modules/.bin/mocha --reporter list --watch --timeout 30000",
|
|
"testd2": "DEBUG='1:*,2:*' ./node_modules/.bin/mocha --reporter list --watch --timeout 30000",
|
|
"testd3": "DEBUG='1:*,2:*,3:*' ./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 demo/interrupt.js"
|
|
},
|
|
"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": "^0.1.0",
|
|
"@uci/utils": "^0.1.0",
|
|
"aggregation": "^1.2.0",
|
|
"bitwise": "^1.3.0"
|
|
},
|
|
"@std/esm": "cjs",
|
|
"devDependencies": {
|
|
"@std/esm": "^0.20.0",
|
|
"chai": "^3.5.0",
|
|
"codecov": "^1.0.1",
|
|
"debug": "^2.6.8",
|
|
"istanbul": "^0.4.5",
|
|
"mocha": "^3.4.2",
|
|
"nodemon": "^1.14.12"
|
|
}
|
|
}
|