package.json 1.8 KB
Newer Older
1
{
2 3 4 5 6 7 8 9 10
  "name": "wechaty",
  "version": "0.2.7",
  "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
firebug  
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
  },
  "homepage": "https://github.com/zixia/wechaty#readme",
  "eslintConfig": {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
36
    "env": {
37 38 39
      "browser": true,
      "node": true,
      "es6": true
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
40
    }
41 42
  },
  "engines": {
43
    "node": ">= 6.0.0"
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
  },
  "dependencies": {
    "body-parser": "latest",
    "chromedriver": "latest",
    "co": "latest",
    "eventemitter2": "latest",
    "express": "latest",
    "npmlog": "latest",
    "phantomjs-prebuilt": "latest",
    "ps-tree": "latest",
    "retry-promise": "latest",
    "selenium-webdriver": "^2.53.2",
    "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/"
77
  ]
78
}