stagehand
Version:
A type-safe library for communicating between JS processes, workers, or other message-passing boundaries.
40 lines (39 loc) • 1.2 kB
JSON
{
"name": "stagehand",
"version": "1.0.0",
"description": "A type-safe library for communicating between JS processes, workers, or other message-passing boundaries.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/dfreeman/stagehand",
"author": "Dan Freeman <dfreeman@salsify.com>",
"license": "MIT",
"scripts": {
"lint": "eslint --ext ts,js .",
"test": "mocha -r ts-node/register 'tests/**/*.ts'",
"test:watch": "mocha --watch --watch-extensions ts -r ts-node/register 'tests/**/*.ts'",
"prepublishOnly": "tsc -p tsconfig.publish.json",
"postpublish": "rimraf lib"
},
"engines": {
"node": "6.* || 8.* || >= 10.*"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/debug": "^0.0.31",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.7",
"chai": "^4.2.0",
"eslint": "^5.6.1",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"mocha": "^5.2.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"typescript": "^3.1.3",
"typescript-eslint-parser": "^20.0.0"
},
"dependencies": {
"debug": "^4.1.0"
}
}