-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "coa-wx-mp",
"version": "0.0.0",
"description": "一个轻量的微信公众号 SDK for Node.js",
"keywords": [
"coajs",
"coa",
"wx-mp",
"wx",
"mp"
],
"license": "MIT",
"author": "Aex",
"homepage": "https://github.com/coajs/coa-wx-mp",
"repository": {
"type": "git",
"url": "https://github.com/coajs/coa-wx-mp.git"
},
"scripts": {
"tsc": "tsc -w",
"play": "node dist/test/play",
"build": "rm -rf dist && tsc && cp package.json *.md dist && rm -rf dist/test",
"lint": "eslint .",
"prettier": "prettier -w .",
"sync": "curl -X PUT 'https://npm.taobao.org/sync/coa-wx-mp?sync_upstream=true'"
},
"devDependencies": {
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.4.0",
"typescript": "^4.4.2"
},
"dependencies": {
"coa-error": "^1.5.2",
"coa-helper": "^1.2.1"
}
}