-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.69 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
{
"name": "wechat-robot",
"version": "0.0.1",
"description": "A Wechat Robot power by NodeJS.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lintFix": "eslint . --fix",
"lint-staged": "lint-staged",
"dev": "pm2 start . --watch --ignore-watch=\"static \\.git \\.idea\" --name wechat-robot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhujun24/wechat-robot.git"
},
"keywords": [
"wechat",
"wechat-robot",
"web-wechat"
],
"dependencies": {
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"cron": "^1.3.0",
"crypto": "^1.0.1",
"koa": "^2.0.0",
"koa-body": "^1.4.0",
"koa-bodyparser": "^3.2.0",
"koa-convert": "^1.2.0",
"koa-pug": "^3.0.0-1",
"koa-router": "^7.0.1",
"koa-static": "^2.0.0",
"lodash": "^4.13.1",
"log4js": "^0.6.36",
"moment": "^2.18.1",
"qrcode-terminal": "^0.11.0",
"request": "^2.83.0"
},
"devDependencies": {
"babel-eslint": "^7.1.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.6.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.5.0",
"lint-staged": "^3.4.1",
"pre-commit": "^1.2.2"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.js": "eslint"
},
"author": "zhujun24",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhujun24/wechat-robot/issues"
},
"homepage": "https://github.com/zhujun24/wechat-robot#readme"
}