forked from wechaty/wechaty
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
166 lines (166 loc) · 5.38 KB
/
package.json
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
41
42
43
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "wechaty",
"version": "0.11.29",
"description": "Wechat for Bot(Personal Account)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"wechaty": {
"DEFAULT_HEAD": 0,
"DEFAULT_PORT": 8080,
"DEFAULT_PUPPET": "web",
"DEFAULT_PROFILE": "demo",
"DEFAULT_PROTOCOL": "io|0.0.1",
"DEFAULT_TOKEN": "WECHATY_IO_TOKEN",
"DEFAULT_APIHOST": "api.chatie.io"
},
"scripts": {
"ts-node": "ts-node",
"dist": "npm run clean && tsc && shx cp src/puppet-web/*.js dist/src/puppet-web/",
"doc": "npm run dist && echo '# Wechaty v'$(jq -r .version package.json)' Documentation\n' > docs/index.md && jsdoc2md dist/src/{wechaty,room,contact,friend-request,message}.js dist/src/puppet-web/friend-request.js>> docs/index.md",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"changelog": "github_changelog_generator -u chatie -p wechaty && sed -i'.bak' /greenkeeper/d CHANGELOG.md && ts-node script/sort-contributiveness.ts < CHANGELOG.md > CHANGELOG.new.md 2>/dev/null && cat CHANGELOG.md >> CHANGELOG.new.md && mv CHANGELOG.new.md CHANGELOG.md",
"doctor": "npm run check-node-version && ts-node bin/doctor",
"clean": "shx rm -fr dist/*",
"check-node-version": "check-node-version --node \">= 7\"",
"lint": "npm run check-node-version && npm run lint:ts && npm run lint:es && npm run lint:sh",
"lint:es": "eslint \"{bin,example,src,test}/**/*.js\" --ignore-pattern=\"test/fixture/**\"",
"lint:ts": "npm run clean && echo tslint v`tslint --version` && tslint --project tsconfig.json \"{bin,example,src,test}/**/*.ts\" --exclude \"test/fixture/**\" --exclude \"dist/\" && tsc --noEmit",
"lint:sh": "bash -n bin/*.sh",
"sloc": "sloc bin example src test index.ts --details --format cli-table --keys total,source,comment && sloc bin example src test index.ts",
"pretest": "npm run clean && npm run lint",
"test": "blue-tape -r ts-node/register -r source-map-support/register \"src/**/*.spec.ts\" \"tests/**/*.spec.ts\"",
"posttest": "npm run sloc",
"test:linux": "npm run pretest && parallel ts-node -- ./src/**/*.spec.ts ./test/**/*.spec.ts && npm run posttest",
"test:npm": "npm run dist && export TMPDIR=/tmp/wechaty.$$ && npm pack && mkdir $TMPDIR && mv wechaty-*.*.*.tgz $TMPDIR && cp test/fixture/smoke-testing.js $TMPDIR && cd $TMPDIR && npm init -y && npm i wechaty-*.*.*.tgz && node smoke-testing.js",
"io-client": "ts-node bin/io-client",
"demo": "ts-node example/ding-dong-bot.ts",
"start": "npm run demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chatie/wechaty.git"
},
"bin": {
"wechaty-io-client": "dist/bin/io-client.js",
"wechaty-doctor": "dist/bin/doctor.js",
"wechaty-version": "dist/bin/version.js"
},
"keywords": [
"wechat",
"微信",
"weixin",
"personal",
"bot",
"robot",
"chatbot",
"framework",
"sdk",
"wechaty",
"chatie",
"微信控"
],
"author": {
"name": "Huan LI",
"email": "[email protected]",
"url": "www.zixia.net"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/chatie/wechaty/issues"
},
"homepage": "https://github.com/chatie/wechaty#readme",
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"es6": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true
}
}
},
"engines": {
"node": ">= 7"
},
"dependencies": {
"@types/node": "^8.0.33",
"@types/ws": "^3.2.0",
"bl": "^1.2.1",
"brolog": "^1.2.8",
"hot-import": "^0.1.21",
"mime": "^2.0.3",
"puppeteer": "^0.12.0",
"raven": "^2.2.1",
"read-pkg-up": "^2.0.0",
"request": "^2.83.0",
"retry-promise": "^1.0.0",
"rxjs": "^5.4.3",
"state-switch": "^0.2.2",
"watchdog": "^0.3.1",
"ws": "^3.2.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/blue-tape": "^0.1.31",
"@types/body-parser": "^1.16.5",
"@types/express": "^4.0.37",
"@types/fluent-ffmpeg": "^2.1.4",
"@types/glob": "^5.0.33",
"@types/mime": "^2.0.0",
"@types/puppeteer": "^0.12.0",
"@types/raven": "^2.1.2",
"@types/read-pkg-up": "^2.0.0",
"@types/request": "^2.0.4",
"@types/sinon": "^2.3.5",
"@types/xml2js": "^0.4.0",
"apiai": "^4.0.3",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-preset-env": "^1.6.0",
"blue-tape": "^1.0.0",
"body-parser": "^1.18.2",
"check-node-version": "^2.1.0",
"cookie-parser": "^1.4.3",
"coveralls": "^3.0.0",
"cross-env": "^5.0.5",
"eslint": "^4.8.0",
"express": "^4.15.2",
"finis": "^0.0.3",
"fluent-ffmpeg": "^2.1.2",
"glob": "^7.1.2",
"jsdoc-to-markdown": "^3.0.0",
"nyc": "^11.2.1",
"qrcode-terminal": "^0.11.0",
"shx": "^0.2.2",
"sinon": "^4.0.1",
"sinon-test": "^2.1.1",
"sloc": "^0.2.0",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"tslint-jsdoc-rules": "^0.1.2",
"tuling123-client": "^0.0.1",
"typescript": "^2.5.3",
"yarn": "^1.1.0"
},
"files_comment__whitelist_npm_publish": "http://stackoverflow.com/a/8617868/1123955",
"files": [
"CHANGELOG",
"LICENSE",
"README.md",
"package.json",
"bin",
"dist/bin",
"dist/index.*",
"dist/src",
"src"
],
"publishConfig": {
"tagBak": "next",
"tag": "latest"
}
}