-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.57 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.57 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "koa-wechat-public",
"version": "0.2.1",
"description": "一款基于koa的微信公众号开发中间件",
"main": "dist/index.js",
"author": "changlon",
"license": "MIT",
"repository": "https://github.com/Changlon/koa-wechat-public",
"keywords": [
"koa",
"koa-wechat",
"koa-middleware",
"wechat",
"weixin",
"微信",
"公众号",
"微信公众号"
],
"typings": "typings/index.d.ts",
"scripts": {
"dev": "nodemon -e ts --exec ts-node ./example/index.ts",
"build": "rd /s/q dist && tsc",
"test": "mocha -r ts-node/register __tests__/*.test.ts"
},
"dependencies": {
"axios": "^0.25.0",
"crypto": "^1.0.1",
"form-data": "^4.0.0",
"ioredis": "5.4.1",
"xml2js": "0.6.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.3.0",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.4",
"@types/koa-router": "^7.4.4",
"@types/koa-xml-body": "^2.2.0",
"@types/mocha": "^9.1.0",
"@types/promise": "^7.1.30",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.2.0",
"chai": "^4.3.4",
"eslint": "7.12.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.1.1",
"koa-sendfile": "^3.0.0",
"koa-xml-body": "^2.2.0",
"mocha": "^9.1.4",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}