You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.1 KiB

6 years ago
{
6 years ago
"name": "@statianzo/pmrpc",
6 years ago
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
6 years ago
"version": "0.1.1",
6 years ago
"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": {
6 years ago
"prepublishOnly": "yarn bundle",
"bundle": "rollup -c",
"test": "jest",
"test:unit": "jest --testPathPattern \\.test\\.",
"test:spec": "jest --testPathPattern \\.spec\\."
},
6 years ago
"devDependencies": {
6 years ago
"@types/jest": "^23.3.1",
6 years ago
"@types/puppeteer": "^1.6.4",
"@types/rollup": "^0.54.0",
6 years ago
"jest": "^23.5.0",
6 years ago
"puppeteer": "^1.8.0",
6 years ago
"rollup": "^0.65.2",
"rollup-plugin-typescript2": "^0.17.0",
6 years ago
"ts-jest": "^23.1.4",
6 years ago
"typescript": "^3.0.3"
6 years ago
},
"jest": {
"transform": {
6 years ago
"^.+\\.(ts|js)$": "ts-jest"
6 years ago
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"js",
6 years ago
"json"
6 years ago
]
6 years ago
}
}