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