uci-i2c-device/package.json

40 lines
1.1 KiB
JSON
Raw Normal View History

2017-01-12 19:50:06 -08:00
{
2018-02-14 19:03:20 -08:00
"name": "@uci/i2c-device",
"version": "0.3.0",
2018-02-14 19:03:20 -08:00
"description": "Device Classes for I2C Interfacing",
"main": "src/device",
2017-01-12 19:50:06 -08:00
"scripts": {
"example": "node -r esm examples/example --preserve-symlinks || true",
"example:dev": "UCI_ENV=dev ./node_modules/.bin/nodemon -r esm examples/example --preserve-symlinks || true",
2017-01-12 19:50:06 -08:00
"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/base": "^0.5.0",
2020-02-07 09:29:57 -08:00
"@uci-utils/logger": "^0.0.16"
2017-01-12 19:50:06 -08:00
},
"devDependencies": {
"chai": "^4.2.0",
2018-05-28 13:47:37 -07:00
"chai-as-promised": "^7.1.1",
"esm": "^3.2.25",
"mocha": "^7.1.0",
2020-02-07 09:29:57 -08:00
"nodemon": "^2.0.2"
2017-01-12 19:50:06 -08:00
}
}