forked from terry-fei/wechat-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "weixinbot",
"version": "0.5.0",
"description": "Robot for Wechat personal chat",
"main": "./lib/weixinbot.js",
"scripts": {
"compile": "babel --plugins \"transform-runtime\" ./src --ignore __test__ --out-dir ./lib",
"pub": "npm run compile && npm publish",
"test": "mocha $npm_package_options_mocha",
"test-watch": "npm run test -- --watch"
},
"options": {
"mocha": "--require scripts/mocha_runner src/**/__test__/**/*.js"
},
"author": "feit",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.3.19",
"bluebird": "^3.3.3",
"debug": "^2.2.0",
"nedb": "^1.8.0",
"nodemailer": "^2.2.1",
"request-promise": "^2.0.0",
"touch": "^1.0.0",
"tough-cookie-filestore": "0.0.1"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-eslint": "^4.1.6",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"chai": "^3.5.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"mocha": "^2.4.5",
"nock": "^7.0.2"
}
}