-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "express-wx",
"version": "1.3.0",
"description": "Express Router for building Wechat Offical Account Message Server easily, supporting loading request (message) handlers dynamically. 快速构建微信公众号消息后端,支持动态加载请求处理逻辑代码。",
"main": "bld/index.js",
"scripts": {
"test": "tsc && mocha -b --exit",
"build": "tsc -b tsconfig-build.json",
"dev": "tsc"
},
"keywords": [
"Wechat",
"Weixin",
"Router",
"dynamic"
],
"author": "Starrah",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.180",
"@types/mocha": "^9.1.0",
"@types/node": "^14.6.0",
"@types/randomstring": "^1.1.8",
"@types/request-promise": "^4.1.48",
"chai": "^4.3.6",
"mocha": "^9.2.2",
"typescript": "^4.6.2"
},
"dependencies": {
"@starrah/prototype-utils": "^0.1.1",
"body-parser": "^1.19.2",
"chalk": "^4.1.2",
"delay": "^5.0.0",
"express": "^4.17.3",
"express-router-dynamic": "^1.1.3",
"lodash": "^4.17.20",
"mongoose": "^5.13.14",
"naming-style": "^1.0.1",
"randomstring": "^1.2.2",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"xml-js": "^1.6.11"
},
"private": false,
"repository": {
"url": "https://github.com/Starrah/express-wx",
"type": "Github"
},
"files": [
"bld/**/*.{js,d.ts}"
]
}