UNPKG

cq-websocket

Version:

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

90 lines (89 loc) 2.39 kB
{ "name": "cq-websocket", "version": "2.1.1", "description": "A Node SDK for developing QQ chatbots based on WebSocket, which is depending on CoolQ and CQHTTP API plugin. ", "engines": { "cqhttp": "^4.5.0", "node": ">=8" }, "main": "./src/index.js", "types": "./cq-websocket.d.ts", "files": [ "src", "dist/**/*.min.js", "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": { "deep-equal": "^1.1.1", "lodash.get": "^4.4.2", "shortid": "^2.2.15", "websocket": "^1.0.31" }, "devDependencies": { "@semantic-release/changelog": "^3.0.6", "@semantic-release/git": "^7.0.18", "@semantic-release/release-notes-generator": "^7.3.5", "ava": "^1.4.1", "commitizen": "^4.0.3", "coveralls": "^3.0.11", "cz-conventional-changelog": "^2.1.0", "eslint": "^5.16.0", "eslint-config-standard": "^12.0.0", "eslint-plugin-import": "^2.20.1", "eslint-plugin-node": "^8.0.1", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.1", "http-server": "^0.12.1", "kaomojify-webpack-plugin": "^0.1.1", "mri": "^1.1.4", "nyc": "^14.1.1", "proxyquire": "^2.1.3", "semantic-release": "^15.14.0", "sinon": "^7.5.0", "tape": "^4.13.2", "webpack": "^4.42.0", "webpack-cli": "^3.3.11" }, "nyc": { "include": [ "src/**/*.js", "!src/util/**/*" ] }, "ava": { "babel": false, "compileEnhancements": false }, "browser": "./src/index.js" }