2017-12-21 15:47:42 -08:00
|
|
|
{
|
2018-01-18 21:21:06 -08:00
|
|
|
"name": "@uci/socket",
|
2017-12-21 15:47:42 -08:00
|
|
|
"version": "0.1.0",
|
2018-01-08 13:06:01 -08:00
|
|
|
"description": "Bare bones intra Host Unix Socket for basic IPC on same machine",
|
|
|
|
"main": "src",
|
2017-12-21 15:47:42 -08:00
|
|
|
"scripts": {
|
2018-01-10 15:03:32 -08:00
|
|
|
"testw": "mocha -r @std/esm test/*.test.mjs --watch --recurse --watch-extensions mjs",
|
|
|
|
"test": "mocha -r @std/esm test/*.test.mjs",
|
2018-01-30 16:59:57 -08:00
|
|
|
"testlog": "mocha -r @std/esm test/*.test.mjs | ./node_modules/.bin/bunyan",
|
2018-01-10 15:03:32 -08:00
|
|
|
"testci": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec --recursive && codecov || true",
|
2018-01-13 20:46:14 -08:00
|
|
|
"s": "node -r @std/esm examples/server | ./node_modules/.bin/bunyan",
|
2018-01-08 13:06:01 -08:00
|
|
|
"devs": "./node_modules/.bin/nodemon -r @std/esm -e mjs examples/server",
|
2018-01-20 14:30:21 -08:00
|
|
|
"c": "node -r @std/esm examples/client | ./node_modules/.bin/bunyan -o short",
|
|
|
|
"c2": "node -r @std/esm examples/client2 | ./node_modules/.bin/bunyan -o short"
|
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",
|
2017-12-22 11:15:46 -08:00
|
|
|
"@std/esm": "cjs",
|
2017-12-21 15:47:42 -08:00
|
|
|
"devDependencies": {
|
2018-01-08 13:06:01 -08:00
|
|
|
"@std/esm": "^0.18.0",
|
2018-01-10 15:03:32 -08:00
|
|
|
"chai": "^4.1.2",
|
|
|
|
"chai-as-promised": "^7.1.1",
|
|
|
|
"codecov": "^3.0.0",
|
|
|
|
"istanbul": "^0.4.5",
|
|
|
|
"mocha": "^4.0.1"
|
2017-12-22 11:15:46 -08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-01-08 13:06:01 -08:00
|
|
|
"better-try-catch": "^0.6.2",
|
2018-01-13 20:46:14 -08:00
|
|
|
"bunyan": "^1.8.12",
|
2018-01-21 19:55:47 -08:00
|
|
|
"death": "^1.1.0"
|
2017-12-21 15:47:42 -08:00
|
|
|
}
|
|
|
|
}
|