-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "ts-wxsdk",
"version": "1.0.8",
"description": "",
"main": "index.js",
"files": [
"*.js",
"*.d.ts",
"*.js.map",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"scripts": {
"start": "tsc -w",
"test": "jest",
"build": "tsc -p tsconfig.build.json",
"gendoc": "typedoc --options typedoc.json && touch docs/.nojekyll"
},
"keywords": [
"wxapi",
"wxapi ts",
"wxapi typescript"
],
"bin": {},
"author": "jimyan",
"license": "MIT",
"homepage": "https://github.com/JimYan/ts-wxsdk.git",
"repository": {
"type": "git",
"url": "git+https://github.com/JimYan/ts-wxsdk.git"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"@types/tunnel": "^0.0.1",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"cross-env": "^7.0.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"typedoc": "^0.18.0",
"typescript": "^3.9.3"
},
"dependencies": {
"axios": "^0.19.2",
"axios-https-proxy-fix": "^0.17.1",
"tunnel": "^0.0.6",
"xml-js": "^1.6.11",
"yaml": "^1.10.0"
}
}