package.json 2.2 KB
Newer Older
1
{
2
  "name": "wechaty",
Huan (李卓桓)'s avatar
0.3.12  
Huan (李卓桓) 已提交
3
  "version": "0.3.12",
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
4
  "description": "Wechat for Bot (Personal Account)",
5
  "main": "index.js",
6
  "wechaty": {
7 8
    "DEFAULT_HEAD": "chrome",
    "DEFAULT_PUPPET": "web",
9
    "DEFAULT_PROFILE": "default-profile-name",
10 11
    "DEFAULT_PORT": 8788,
    "DEFAULT_PUPPET_PORT": 58788
12
  },
13
  "scripts": {
14
    "lint": "eslint src test || echo ok",
15
    "pretest": "npm run lint",
16
    "start": "node bin/io-bot",
17
    "demo": "node example/ding-dong-bot.js",
18
    "test": "cross-env LC_ALL=C WECHATY_LOG=info ava --serial --timeout=10m \"{src,test}/**/*.spec.js\"",
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
19
    "ava": "cross-env LC_ALL=C WECHATY_LOG=verbose ava \"{src,test}/**/*.spec.js\"",
20
    "testdev": "cross-env LC_ALL=C WECHATY_LOG=silly ava --verbose --fail-fast --timeout=3m"
21 22 23 24 25
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/zixia/wechaty.git"
  },
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
26
  "bin": {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
27 28
    "io-bot": "bin/io-bot.js",
    "wechaty-version": "bin/version.js"
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
29
  },
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
  "keywords": [
    "wechat",
    "微信",
    "weixin",
    "personal",
    "bot",
    "robot",
    "chatbot",
    "framework",
    "wechaty",
    "微信控"
  ],
  "author": "Zhuohuan LI <zixia@zixia.net>",
  "license": "ISC",
  "bugs": {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
45
    "url": "https://github.com/zixia/wechaty/issues"
46 47 48
  },
  "homepage": "https://github.com/zixia/wechaty#readme",
  "eslintConfig": {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
49
    "env": {
50 51 52
      "browser": true,
      "node": true,
      "es6": true
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
53
    }
54 55
  },
  "engines": {
56
    "node": ">= 6.0.0"
57 58
  },
  "dependencies": {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
59
    "body-parser": "^1.15.2",
60
    "chromedriver": "^2.23.1",
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
61 62 63 64
    "co": "^4.6.0",
    "eventemitter2": "^2.1.0",
    "express": "^4.13.4",
    "npmlog": "^4.0.0",
65
    "phantomjs-prebuilt": "^2.1.12",
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
66 67 68 69 70
    "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"
71 72
  },
  "devDependencies": {
73
    "apiai": "^2.0.7",
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
74
    "ava": "^0.16.0",
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
75 76
    "cookie-parser": "^1.4.3",
    "cross-env": "^2.0.0",
77
    "eslint": "^3.3.1",
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
78
    "qrcode-terminal": "^0.10.0",
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
79
    "sinon": "^1.17.5",
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
80
    "tuling123-client": "0.0.1"
81 82 83 84 85 86 87 88 89
  },
  "files_comment__whitelist_npm_publish": "http://stackoverflow.com/a/8617868/1123955",
  "files": [
    "package.json",
    "README.md",
    "CHANGELOG",
    "LICENSE",
    "src/",
    "bin/"
90
  ]
91
}