{ "name": "pmrpc", "main": "lib/index.js", "module": "lib/index.esm.js", "types": "lib/index.d.ts", "version": "0.1.0", "description": "JSON RPC over PostMessage", "repository": "https://github.com/statianzo/pmrpc", "author": "statianzo", "license": "ISC", "files": [ "LICENSE", "lib/index.js", "lib/index.esm.js", "lib/index.d.js", "lib/JsonRpc.d.ts" ], "scripts": { "prepublish": "yarn build", "build": "rollup -c", "test": "jest" }, "devDependencies": { "@types/jest": "^23.3.1", "jest": "^23.5.0", "rollup": "^0.65.2", "rollup-plugin-typescript2": "^0.17.0", "ts-jest": "^23.1.4", "typescript": "^3.0.3" }, "jest": { "transform": { "^.+\\.tsx?$": "ts-jest" }, "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json", "node" ] } }