package.json 1.8 KB
Newer Older
1
{
2
  "name": "wechaty",
3
  "version": "0.3.9",
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
    "devtest": "cross-env LC_ALL=C TAP_TIMEOUT=600 tape"
13 14 15 16 17
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/zixia/wechaty.git"
  },
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
18 19 20
  "bin": {
    "io-bot": "bin/io-bot.js"
  },
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
  "keywords": [
    "wechat",
    "微信",
    "weixin",
    "personal",
    "bot",
    "robot",
    "chatbot",
    "framework",
    "wechaty",
    "微信控"
  ],
  "author": "Zhuohuan LI <zixia@zixia.net>",
  "license": "ISC",
  "bugs": {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
36
    "url": "https://github.com/zixia/wechaty/issues"
37 38 39
  },
  "homepage": "https://github.com/zixia/wechaty#readme",
  "eslintConfig": {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
40
    "env": {
41 42 43
      "browser": true,
      "node": true,
      "es6": true
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
44
    }
45 46
  },
  "engines": {
47
    "node": ">= 6.0.0"
48 49
  },
  "dependencies": {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
50
    "body-parser": "^1.15.2",
51
    "chromedriver": "^2.23.1",
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
52 53 54 55
    "co": "^4.6.0",
    "eventemitter2": "^2.1.0",
    "express": "^4.13.4",
    "npmlog": "^4.0.0",
56
    "phantomjs-prebuilt": "^2.1.12",
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
57 58 59 60 61
    "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"
62 63
  },
  "devDependencies": {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
64 65 66
    "apiai": "^2.0.1",
    "cookie-parser": "^1.4.3",
    "cross-env": "^2.0.0",
67
    "eslint": "^3.3.1",
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
68
    "qrcode-terminal": "^0.10.0",
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
69
    "sinon": "^1.17.5",
70
    "tape": "^4.6.0",
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
71
    "tuling123-client": "0.0.1"
72 73 74 75 76 77 78 79 80
  },
  "files_comment__whitelist_npm_publish": "http://stackoverflow.com/a/8617868/1123955",
  "files": [
    "package.json",
    "README.md",
    "CHANGELOG",
    "LICENSE",
    "src/",
    "bin/"
81
  ]
82
}