rxjs-websockets
Version:
rxjs 7 websockets library
63 lines (62 loc) • 1.83 kB
JSON
{
"name": "rxjs-websockets",
"version": "9.0.0",
"description": "rxjs 7 websockets library",
"author": "insidewhy <github@chilon.net>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/insidewhy/rxjs-websockets.git"
},
"keywords": [
"angular",
"angular2",
"redux",
"redux-observable",
"rxjs",
"vuex",
"websocket",
"websockets"
],
"main": "dist.es5/index.js",
"module": "dist.es5m/index.js",
"es2015": "dist.es2015/index.js",
"typings": "dist.es2015/index",
"sideEffects": false,
"scripts": {
"prepublishOnly": "yarn build",
"build": "yarn build-modern && yarn build-es5 && yarn build-es5m",
"build-modern": "tsc -p src",
"build-es5": "tsc -p src --target es5 --outDir dist.es5",
"build-es5m": "yarn build-es5 -m es2015 --outDir dist.es5m",
"build-watch": "yarn build-es5 -w",
"clean": "rimraf 'dist*'",
"lint": "eslint 'src/*.ts'",
"lint-fix": "yarn lint --fix",
"run-prettier": "prettier 'src/*.ts' '*.md'",
"validate-prettiness": "yarn run-prettier -c",
"make-prettier": "yarn run-prettier --write",
"test": "yarn jest",
"watch": "yarn build-es5 && concurrently 'yarn build-watch' 'yarn jest-watch'",
"validate": "yarn test && yarn lint && yarn validate-prettiness",
"jest-watch": "yarn jest --watch"
},
"peerDependencies": {
"rxjs": "^7.0.0"
},
"devDependencies": {
"@types/jest": "26.0.24",
"@typescript-eslint/eslint-plugin": "4.28.3",
"@typescript-eslint/parser": "4.28.3",
"concurrently": "6.2.0",
"eslint": "7.31.0",
"eslint-config-prettier": "8.3.0",
"husky": "7.0.1",
"jest": "27.0.6",
"prettier": "2.3.2",
"pretty-quick": "3.1.1",
"rimraf": "3.0.2",
"rxjs": "^7.2.0",
"typescript": "4.3.5"
}
}