js-smp-peer2
Version:
<p align="center"> <a href="https://github.com/mhchia/js-smp-peer/actions?workflow=nodejs-test"><img alt="GitHub Actions status" src="https://github.com/mhchia/js-smp-peer/workflows/nodejs-test/badge.svg"></a> </p>
60 lines • 1.31 kB
JSON
{
"version": "0.1.1",
"license": "MIT",
"main": "lib/smpPeer.js",
"types": "lib/smpPeer.d.ts",
"files": [
"lib/**/*"
],
"engines": {
"node": ">=10"
},
"scripts": {
"test": "tsdx test",
"lint": "tsdx lint src test",
"build": "tsc",
"bundle": "npx webpack --config webpack.config.js",
"release": "npm run build && npm run bundle && git push --tags && npm publish"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tkmct/js-smp-peer.git"
},
"bugs": {
"url": "https://github.com/tkmct/js-smp-peer/issues"
},
"homepage": "https://github.com/tkmct/js-smp-peer#readme",
"keywords": [
"smp"
],
"name": "js-smp-peer2",
"author": "mhchia",
"module": "dist/js-smp-peer.js",
"devDependencies": {
"@types/jest": "^25.2.3",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"ts-loader": "^7.0.4",
"tsdx": "^0.13.2",
"tslib": "^2.0.0",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"js-smp": "^0.1.8",
"peerjs": "^1.2.0"
}
}