@duncte123/obs-websocket-js
Version:
Fork of obs ws v4 so I can create a bridge to v5
88 lines (87 loc) • 2.49 kB
JSON
{
"name": "@duncte123/obs-websocket-js",
"version": "4.0.6",
"description": "Fork of obs ws v4 so I can create a bridge to v5",
"author": "Brendan Hagan (haganbmj)",
"license": "MIT",
"repository": "obs-websocket-community-projects/obs-websocket-js",
"repoUrl": "https://github.com/obs-websocket-community-projects/obs-websocket-js",
"keywords": [
"obs",
"studio",
"websocket",
"node",
"node.js"
],
"main": "lib/index.js",
"files": [
"dist",
"lib",
"types/index.d.ts"
],
"types": "types/index.d.ts",
"scripts": {
"build": "npm-run-all build:*",
"build:web": "rimraf dist && webpack",
"prebuild:types": "tslint -c .travis/tslint.json -p .travis/tsconfig.json",
"build:types": "cross-env-shell TS_NODE_PROJECT=.travis/tsconfig.json \"node $NODE_DEBUG_OPTION -r ts-node/register .travis/build-types.ts\"",
"watch": "webpack --watch",
"test": "npm-run-all test:*",
"test:static": "eslint .",
"test:ava": "npm run ava",
"test:types": "dtslint types",
"report": "nyc report --reporter=text-lcov",
"node-coveralls": "npm run report | coveralls",
"ava": "nyc ava --verbose",
"static": "eslint ."
},
"dependencies": {
"debug": "^4.1.0",
"isomorphic-ws": "^4.0.1",
"sha.js": "^2.4.9",
"ws": "^7.2.0"
},
"devDependencies": {
"@types/got": "^9.6.9",
"@types/lodash.deburr": "^4.1.6",
"@types/node": "^10.17.6",
"@types/prettier": "^1.19.0",
"ava": "^3.2.0",
"babili-webpack-plugin": "^0.1.2",
"coveralls": "^3.0.9",
"cross-env": "^6.0.3",
"dtslint": "^2.0.2",
"eslint": "^6.7.2",
"eslint-config-xo-space": "^0.22.0",
"eslint-plugin-ava": "^10.0.1",
"got": "^9.6.0",
"lodash.deburr": "^4.1.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"ts-node": "^8.5.4",
"tslint": "5.20.1",
"tslint-xo": "0.16.0",
"typescript": "3.7.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"bugs": {
"url": "https://github.com/obs-websocket-community-projects/obs-websocket-js/issues"
},
"homepage": "https://github.com/obs-websocket-community-projects/obs-websocket-js#readme",
"eslintConfig": {
"extends": "xo-space/esnext"
},
"ava": {
"files": [
"test/*.spec.js",
"!setup/environment.js"
],
"concurrency": 1,
"timeout": "10s",
"verbose": true
}
}