uci-base/package.json

50 lines
1.4 KiB
JSON
Raw Normal View History

2017-12-21 15:47:42 -08:00
{
"name": "@uci/base",
2018-05-16 07:08:14 -07:00
"version": "0.1.4",
2017-12-21 15:47:42 -08:00
"description": "Mutli Level/Transport Message/Event Classes",
"main": "src/base",
2017-12-21 15:47:42 -08:00
"scripts": {
2018-05-16 07:08:14 -07:00
"deve": "./node_modules/.bin/nodemon -r esm examples/four-in-one",
"fio": "node -r esm examples/four-in-one",
"dy": "node -r esm examples/dynamic",
"web": "node -r esm examples/web",
2018-05-16 07:08:14 -07:00
"mqtt": "node -r esm examples/mqtt",
"testw": "mocha -r esm test/*.test.mjs --watch --recurse --watch-extensions mjs",
"test": "mocha -r esm test/*.test.mjs",
"testci": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec --recursive && codecov || true"
2017-12-21 15:47:42 -08:00
},
"author": "David Kebler",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/uCOMmandIt/message.git"
},
"keywords": [
"node.js",
"i2c",
"rpi",
"raspberrypi"
],
"bugs": {
"url": "https://github.com/uCOMmandIt/message/issues"
},
"homepage": "https://github.com/uCOMmandIt/message#readme",
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.0.0",
"esm": "^3.0.36",
2017-12-21 15:47:42 -08:00
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nodemon": "^1.14.12"
},
"dependencies": {
2018-05-16 07:08:14 -07:00
"@uci/logger": "^0.0.3",
"@uci/mqtt": "0.0.9",
"@uci/socket": "^0.1.1",
"@uci/utils": "^0.1.1",
"@uci/websocket": "^0.1.8",
"p-settle": "^2.1.0"
2017-12-21 15:47:42 -08:00
}
}