-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "node-wechat-terminal",
"version": "0.2.2",
"description": "Wechat client in terminal",
"main": "cli.js",
"scripts": {
"test": "node node_modules/eslint/bin/eslint.js . && node node_modules/mocha/bin/mocha",
"start": "node cli.js"
},
"bin": {
"wechat-terminal": "./cli.js"
},
"keywords": [
"wechat",
"terminal"
],
"repository": {
"type": "git",
"url": "git+https://github.com/goorockey/node-wechat-terminal.git"
},
"author": "goorockey",
"license": "MIT",
"bugs": {
"url": "https://github.com/goorockey/node-wechat-terminal/issues"
},
"engines": {
"node": ">=4.0.0"
},
"engineStrict": true,
"homepage": "https://github.com/goorockey/node-wechat-terminal#readme",
"dependencies": {
"chalk": "^1.1.3",
"columnify": "^1.5.2",
"lodash": "^4.13.1",
"node-notifier": "^4.6.0",
"qrcode-terminal": "git+https://github.com/goorockey/qrcode-terminal.git",
"request": "2.71.0",
"request-promise": "3.0.0",
"winston": "^2.1.1",
"xml2js": "^0.4.13"
},
"devDependencies": {
"chai": "^3.4.0",
"eslint": "^2.9.0",
"mocha": "^2.3.3"
}
}