56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"name": "i2c-bus",
|
|
"version": "5.2.3",
|
|
"description": "I2C serial bus access with Node.js",
|
|
"main": "i2c-bus.js",
|
|
"directories": {
|
|
"example": "example",
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"coverage-report": "nyc report --reporter=html",
|
|
"coveralls": "nyc report --reporter=text-lcov | coveralls",
|
|
"install": "node-gyp rebuild",
|
|
"integration-test": "cd integration-test && ./run-tests && cd ..",
|
|
"lint": "jshint i2c-bus.js example/*.js integration-test/*.js test/*.js test/*/*.js",
|
|
"test": "nyc mocha"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/fivdi/i2c-bus.git"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"dependencies": {
|
|
"bindings": "^1.5.0",
|
|
"nan": "^2.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"async": "^3.2.4",
|
|
"coveralls": "^3.1.1",
|
|
"glob": "^10.3.3",
|
|
"jshint": "^2.13.6",
|
|
"lodash": "^4.17.21",
|
|
"mocha": "^10.2.0",
|
|
"mock-fs": "^5.2.0",
|
|
"mock-require": "^3.0.3",
|
|
"nyc": "^15.1.0",
|
|
"sinon": "^15.2.0"
|
|
},
|
|
"keywords": [
|
|
"i2c",
|
|
"iot",
|
|
"raspberry",
|
|
"raspi",
|
|
"rpi",
|
|
"pi",
|
|
"beaglebone",
|
|
"smbus",
|
|
"linux"
|
|
],
|
|
"author": "fivdi",
|
|
"license": "MIT",
|
|
"gypfile": true
|
|
}
|