uci-i2c-bus/package.json

38 lines
939 B
JSON
Raw Normal View History

2017-01-12 19:50:06 -08:00
{
"name": "@uci/i2c",
"version": "0.1.1",
2017-01-13 19:51:55 -08:00
"description": "Bus and Device Classes for I2C Interfacing",
2017-01-12 19:50:06 -08:00
"main": "index.js",
"scripts": {
"testw": "./node_modules/.bin/mocha --reporter list --recursive --watch",
"test": "istanbul cover ./node_modules/.bin/_mocha test/ --report lcovonly -- -R spec --recursive && codecov || true"
},
"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",
2017-01-12 19:50:06 -08:00
"dependencies": {
"@uci/require-all": "^2.x",
"i2c-bus": "^1.x"
2017-01-12 19:50:06 -08:00
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
2017-01-12 19:50:06 -08:00
"codecov": "^1.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
}
}