generated from wechaty/puppet-mock
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
104 lines (104 loc) · 2.92 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
{
"name": "wechaty-puppet-official-account",
"version": "1.10.12",
"description": "Wechaty Puppet for WeChat Official Accounts",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/src/mod.js",
"require": "./dist/cjs/src/mod.js"
}
},
"typings": "./dist/esm/src/mod.d.ts",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"scripts": {
"clean": "shx rm -fr dist/*",
"dist": "npm-run-all clean build dist:commonjs",
"build": "tsc && tsc -p tsconfig.cjs.json",
"dist:commonjs": "shx echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
"start": "ts-node examples/ding-dong-bot.ts",
"start:echo": "ts-node examples/echo.ts",
"lint": "npm run lint:es && npm run lint:ts && npm run lint:md",
"lint:md": "markdownlint README.md",
"lint:ts": "tsc --isolatedModules --noEmit",
"lint:es": "eslint \"src/**/*.ts\" \"examples/*.ts\" \"tests/**/*.spec.ts\" --ignore-pattern tests/fixtures/",
"test": "npm-run-all lint test:src test:unit",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"test:src": "tap --node-arg=--loader=ts-node/esm --node-arg=--no-warnings \"src/**/*.spec.ts\"",
"test:unit": "tap --node-arg=--loader=ts-node/esm --node-arg=--no-warnings \"tests/**/*.spec.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/wechaty/wechaty-puppet-official-account.git"
},
"keywords": [
"chatie",
"wechaty",
"chatbot",
"bot",
"wechat",
"sdk",
"puppet",
"oa"
],
"author": "Huan LI <zixia@zixia.net>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wechaty/wechaty-puppet-official-account/issues"
},
"homepage": "https://github.com/wechaty/wechaty-puppet-official-account#readme",
"devDependencies": {
"@chatie/eslint-config": "^1.0.4",
"@chatie/git-scripts": "^0.6.2",
"@chatie/semver": "^0.4.7",
"@chatie/tsconfig": "^4.5.3",
"@types/cuid": "^1.3.1",
"@types/express": "^4.17.13",
"@types/express-xml-bodyparser": "^0.3.2",
"@types/localtunnel": "^2.0.1",
"@types/lru-cache": "^5.1.1",
"@types/normalize-package-data": "^2.4.1",
"@types/uuid": "^8.3.3",
"ci-info": "^3.2.0",
"dotenv": "^10.0.0",
"tstest": "^1.0.1",
"wechaty": "^1.5.2"
},
"peerDependencies": {
"wechaty-puppet": "^1.10.2"
},
"dependencies": {
"cuid": "^2.1.8",
"express": "^4.17.1",
"express-xml-bodyparser": "^0.3.0",
"file-box": "^1.4.1",
"flash-store": "^1.3.4",
"localtunnel": "^2.0.2",
"lru-cache": "^6.0.0",
"normalize-package-data": "^3.0.3",
"state-switch": "^1.6.2",
"typed-emitter": "^1.4.0",
"unirest": "^0.6.0",
"uuid": "^8.3.2"
},
"publishConfig": {
"access": "public",
"tag": "next"
},
"files": [
"bin/",
"dist/",
"src/"
],
"tap": {
"check-coverage": false
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}