-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
110 lines (110 loc) · 3.07 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
{
"name": "wechaty-puppet-padpro",
"version": "0.3.23",
"description": "Padpro Puppet for Wechaty",
"directories": {
"example": "examples"
},
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"engines": {
"wechaty": ">=0.19.145"
},
"scripts": {
"clean": "shx rm -fr dist/*",
"dist": "npm run clean && tsc && cp -R src/gateway/proto-ts/ dist/src/gateway/proto-ts/",
"pack": "npm pack",
"lint": "npm run lint:es && npm run lint:ts && npm run lint:md",
"lint:md": "markdownlint README.md",
"lint:ts": "tsc --noEmit",
"lint:es": "eslint 'src/**/*.ts' 'tests/**/*.spec.ts' --ignore-pattern tests/fixtures/",
"test": "npm run lint && npm run test:unit && npm run test:int",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"test:unit": "blue-tape -r ts-node/register \"src/**/*.spec.ts\"",
"test:int": "blue-tape -r ts-node/register \"src/*.spec.ts\" \"tests/**/*.spec.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/botorange/wechaty-puppet-padpro.git"
},
"keywords": [
"chatie",
"wechaty",
"puppet",
"padpro",
"wechat",
"chatbot",
"sdk"
],
"author": "Rui LI <ruiruibupt@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/botorange/wechaty-puppet-padpro/issues"
},
"devDependencies": {
"@chatie/eslint-config": "^0.8.1",
"@chatie/git-scripts": "^0.2.5",
"@chatie/semver": "^0.4.7",
"@chatie/tsconfig": "^0.6.1",
"@types/fs-extra": "^8.0.0",
"@types/google-protobuf": "^3.2.7",
"@types/http-proxy-agent": "^2.0.0",
"@types/lru-cache": "^5.1.0",
"@types/md5": "^2.1.33",
"@types/normalize-package-data": "^2.4.0",
"@types/promise-retry": "^1.1.3",
"@types/qr-image": "^3.2.1",
"@types/raven": "^2.5.1",
"@types/uuid": "^3.4.4",
"@types/xml2js": "^0.4.3",
"cuid": "^2.1.2",
"file-box": "^0.8.27",
"memory-card": "^0.6.8",
"pkg-jq": "^0.2.4",
"qrcode-terminal": "^0.12.0",
"shx": "^0.3.1",
"tstest": "^0.4.2",
"wechaty-puppet": "^0.17.12"
},
"peerDependencies": {
"file-box": "^0.8.27",
"wechaty-puppet": "^0.17.12"
},
"homepage": "https://github.com/botorange/wechaty-puppet-padpro#readme",
"dependencies": {
"@babel/runtime": "7.5.5",
"array-flatten": "^2.1.1",
"axios": "^0.19.0",
"fast-xml-parser": "^3.12.12",
"flash-store": "^0.14.1",
"fs-extra": "^8.0.0",
"google-protobuf": "^3.6.1",
"grpc": "^1.22.0",
"he": "^1.1.1",
"http-proxy-agent": "^2.1.0",
"jimp": "^0.6.1",
"jsqr": "^1.1.0",
"lru-cache": "^5.1.1",
"md5": "^2.2.1",
"promise-retry": "^1.1.1",
"public-ip": "^3.0.0",
"qr-image": "^3.2.0",
"qrcode": "^1.4.0",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"rx-queue": "^0.8.1",
"rxjs": "^6.2.1",
"socks5-client": "^1.2.6",
"socks5-http-client": "^1.0.4",
"uuid": "^3.3.2",
"xml2js": "^0.4.19"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
},
"publishConfig": {
"tag": "next"
}
}