forked from momocow/node-cq-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.29 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.29 KB
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
{
"name": "cq-websocket",
"version": "2.0.0",
"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"
],
"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.0.1",
"lodash.get": "^4.4.2",
"shortid": "^2.2.13",
"websocket": "^1.0.28"
},
"devDependencies": {
"@semantic-release/changelog": "3.0.2",
"@semantic-release/git": "7.0.8",
"@semantic-release/release-notes-generator": "7.1.4",
"ava": "1.2.1",
"commitizen": "3.0.7",
"coveralls": "3.0.3",
"cz-conventional-changelog": "2.1.0",
"eslint": "5.15.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"http-server": "0.11.1",
"kaomojify-webpack-plugin": "0.1.1",
"mri": "1.1.4",
"nyc": "13.3.0",
"proxyquire": "2.1.0",
"semantic-release": "15.13.4",
"sinon": "7.2.6",
"tape": "4.10.1",
"webpack": "4.29.6",
"webpack-cli": "3.2.3"
},
"nyc": {
"include": [
"src/**/*.js",
"!src/util/**/*"
]
},
"ava": {
"babel": false,
"compileEnhancements": false
},
"browser": "./src/index.js"
}