This repository has been archived by the owner on Aug 3, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
89 lines (89 loc) · 2.34 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"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"
}