package.json 1.6 KB
Newer Older
1
{
2
  "name": "wechaty"
Huan (李卓桓)'s avatar
test  
Huan (李卓桓) 已提交
3
  , "version": "0.2.3"
4 5 6 7 8 9 10
  , "description": "Wechat for Bot. (Personal Account NOT Official Account)"
  , "main": "index.js"
  , "scripts": {
    "lint": "eslint src test"
    , "pretest": "npm run lint"
    , "start": "node bin/io-bot.js"
    , "demo": "node example/ding-dong-bot.js"
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
11
    , "test": "cross-env TAP_TIMEOUT=600 tap --reporter=tap test/*.spec.js"
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
  }
  , "repository": {
    "type": "git"
    , "url": "git+https://github.com/zixia/wechaty.git"
  }
  , "keywords": [
    "wechat"
    , "微信"
    , "weixin"
    , "personal"
    , "bot"
    , "robot"
    , "chatbot"
    , "framework"
    , "wechaty"
    , "微信控"
  ]
  , "author": "Zhuohuan LI <zixia@zixia.net>"
  , "license": "ISC"
  , "bugs": {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
32
    "url": "https://github.com/zixia/wechaty/issues"
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
  }
  , "homepage": "https://github.com/zixia/wechaty#readme"
  , "dependencies": {
    "body-parser": "^1.15.0"
    , "chromedriver": "^2.21.2"
    , "co": "^4.6.0"
    , "eventemitter2": "^1.0.3"
    , "express": "^4.13.4"
    , "npmlog": "^2.0.3"
    , "phantomjs-prebuilt": "^2.1.7"
    , "ps-tree": "^1.1.0"
    , "retry-promise": "^1.0.0"
    , "selenium-webdriver": "^2.53.2"
    , "socket.io": "^1.4.5"
    , "ws": "^1.1.0"
  }
  , "eslintConfig": {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
50
    "env": {
51 52 53
      "browser": true
      , "node": true
      , "es6": true
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
54
    }
55 56
  }
  , "engines": {
57
    "node": ">= 6.0.0"
58 59 60 61 62 63 64 65 66
  }
  , "devDependencies": {
    "apiai": "^2.0.5"
    , "cookie-parser": "^1.4.3"
    , "cross-env": "^1.0.8"
    , "eslint": "^2.9.0"
    , "qrcode-terminal": "^0.10.0"
    , "tap": "^5.7.1"
    , "tuling123-client": "0.0.1"
67 68
  }
}