package.json 1.8 KB
Newer Older
1
{
2
  "name": "wechaty",
3
  "version": "0.3.3",
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 TAP_TIMEOUT=600 tap --reporter=tap 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 49 50 51 52 53 54 55 56 57
  },
  "dependencies": {
    "body-parser": "latest",
    "chromedriver": "latest",
    "co": "latest",
    "eventemitter2": "latest",
    "express": "latest",
    "npmlog": "latest",
    "phantomjs-prebuilt": "latest",
    "ps-tree": "latest",
    "retry-promise": "latest",
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
58
    "selenium-webdriver": "latest",
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
    "socket.io": "latest",
    "ws": "latest"
  },
  "devDependencies": {
    "apiai": "latest",
    "cookie-parser": "latest",
    "cross-env": "latest",
    "eslint": "latest",
    "qrcode-terminal": "latest",
    "tap": "latest",
    "tuling123-client": "latest"
  },
  "files_comment__whitelist_npm_publish": "http://stackoverflow.com/a/8617868/1123955",
  "files": [
    "package.json",
    "npm-shrinkwrap.json",
    "README.md",
    "CHANGELOG",
    "LICENSE",
    "src/",
    "bin/"
80
  ]
81
}