package.json 1.7 KB
Newer Older
1
{
2
  "name": "wechaty",
Huan (李卓桓)'s avatar
0.3.8  
Huan (李卓桓) 已提交
3
  "version": "0.3.8",
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
4
  "description": "Wechat for Bot (Personal Account)",
5 6 7 8
  "main": "index.js",
  "scripts": {
    "lint": "eslint src test",
    "pretest": "npm run lint",
9
    "start": "node bin/io-bot",
10
    "demo": "node example/ding-dong-bot.js",
11
    "test": "cross-env LC_ALL=C TAP_TIMEOUT=600 tape test/**/*.spec.js"
12 13 14 15 16
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/zixia/wechaty.git"
  },
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
17 18 19
  "bin": {
    "io-bot": "bin/io-bot.js"
  },
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
  "keywords": [
    "wechat",
    "微信",
    "weixin",
    "personal",
    "bot",
    "robot",
    "chatbot",
    "framework",
    "wechaty",
    "微信控"
  ],
  "author": "Zhuohuan LI <zixia@zixia.net>",
  "license": "ISC",
  "bugs": {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
35
    "url": "https://github.com/zixia/wechaty/issues"
36 37 38
  },
  "homepage": "https://github.com/zixia/wechaty#readme",
  "eslintConfig": {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
39
    "env": {
40 41 42
      "browser": true,
      "node": true,
      "es6": true
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
43
    }
44 45
  },
  "engines": {
46
    "node": ">= 6.0.0"
47 48
  },
  "dependencies": {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
49 50 51 52 53 54 55 56 57 58 59 60
    "body-parser": "^1.15.2",
    "chromedriver": "^2.22.2",
    "co": "^4.6.0",
    "eventemitter2": "^2.1.0",
    "express": "^4.13.4",
    "npmlog": "^4.0.0",
    "phantomjs-prebuilt": "^2.1.10",
    "ps-tree": "^1.0.1",
    "retry-promise": "^1.0.0",
    "selenium-webdriver": "^3.0.0-beta-1",
    "socket.io": "^1.4.8",
    "ws": "^1.1.1"
61 62
  },
  "devDependencies": {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
63 64 65 66 67
    "apiai": "^2.0.1",
    "cookie-parser": "^1.4.3",
    "cross-env": "^2.0.0",
    "eslint": "^3.2.2",
    "qrcode-terminal": "^0.10.0",
68
    "tape": "^4.6.0",
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
69
    "tuling123-client": "0.0.1"
70 71 72 73 74 75 76 77 78
  },
  "files_comment__whitelist_npm_publish": "http://stackoverflow.com/a/8617868/1123955",
  "files": [
    "package.json",
    "README.md",
    "CHANGELOG",
    "LICENSE",
    "src/",
    "bin/"
79
  ]
80
}