UNPKG

cq-websocket

Version:

A Node SDK for developing QQ chatbots based on WebSocket, which is depending on CoolQ and CQHTTP API plugin.

80 lines (79 loc) 2.15 kB
{ "name": "cq-websocket", "version": "1.8.1", "description": "A Node SDK for developing QQ chatbots based on WebSocket, which is depending on CoolQ and CQHTTP API plugin. ", "engines": { "node": ">=7.6.0" }, "main": "./src/index.js", "types": "./cq-websocket.d.ts", "scripts": { "test": "nyc ava test/*/*.test.js", "build": "webpack --config ./webpack.config.js", "build-demo": "webpack --config demo/webpack/webpack.config.js", "demo-browser": "http-server demo/webpack/www", "demo-echobot": "node ./demo/echobot.js", "coverage": "nyc report --reporter=text-lcov | coveralls", "commit": "git-cz", "lint": "eslint src", "lint:fix": "eslint src --fix", "release": "semantic-release" }, "repository": { "type": "git", "url": "git+https://github.com/momocow/node-cq-websocket.git" }, "keywords": [ "CoolQ", "websocket" ], "author": "MomoCow", "license": "MIT", "bugs": { "url": "https://github.com/momocow/node-cq-websocket/issues" }, "homepage": "https://github.com/momocow/node-cq-websocket#readme", "config": { "commitizen": { "path": "cz-conventional-changelog" } }, "dependencies": { "lodash.get": "^4.4.2", "shortid": "^2.2.12", "websocket": "^1.0.25" }, "devDependencies": { "@semantic-release/changelog": "^3.0.0", "@semantic-release/git": "^7.0.5", "ava": "^1.0.0-beta.6", "commitizen": "^3.0.2", "coveralls": "^3.0.1", "cz-conventional-changelog": "^2.1.0", "eslint": "^5.7.0", "eslint-config-standard": "^12.0.0", "eslint-plugin-import": "^2.14.0", "eslint-plugin-node": "^7.0.1", "eslint-plugin-promise": "^4.0.1", "eslint-plugin-standard": "^4.0.0", "http-server": "^0.11.1", "mri": "^1.1.1", "nyc": "^11.9.0", "proxyquire": "^2.0.1", "semantic-release": "^15.10.2", "sinon": "^4.5.0", "webpack": "^4.16.1", "webpack-cli": "^3.0.8" }, "nyc": { "include": [ "src/*.js", "src/cq-tag/**/*.js" ] }, "ava": { "babel": false, "compileEnhancements": false }, "browser": "./src/index.js" }