UNPKG

1.2 kBJSONView Raw
1{
2 "name": "stagehand",
3 "version": "1.0.0",
4 "description": "A type-safe library for communicating between JS processes, workers, or other message-passing boundaries.",
5 "main": "lib/index.js",
6 "types": "lib/index.d.ts",
7 "repository": "https://github.com/dfreeman/stagehand",
8 "author": "Dan Freeman <dfreeman@salsify.com>",
9 "license": "MIT",
10 "scripts": {
11 "lint": "eslint --ext ts,js .",
12 "test": "mocha -r ts-node/register 'tests/**/*.ts'",
13 "test:watch": "mocha --watch --watch-extensions ts -r ts-node/register 'tests/**/*.ts'",
14 "prepublishOnly": "tsc -p tsconfig.publish.json",
15 "postpublish": "rimraf lib"
16 },
17 "engines": {
18 "node": "6.* || 8.* || >= 10.*"
19 },
20 "devDependencies": {
21 "@types/chai": "^4.1.6",
22 "@types/debug": "^0.0.31",
23 "@types/mocha": "^5.2.5",
24 "@types/node": "^10.11.7",
25 "chai": "^4.2.0",
26 "eslint": "^5.6.1",
27 "eslint-config-prettier": "^3.1.0",
28 "eslint-plugin-prettier": "^3.0.0",
29 "mocha": "^5.2.0",
30 "prettier": "^1.14.3",
31 "rimraf": "^2.6.2",
32 "ts-node": "^7.0.1",
33 "typescript": "^3.1.3",
34 "typescript-eslint-parser": "^20.0.0"
35 },
36 "dependencies": {
37 "debug": "^4.1.0"
38 }
39}