forked from JasonBoy/wechat-jssdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.14 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
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
{
"name": "wechat-jssdk",
"version": "5.0.3",
"description": "Next-Generation WeChat JS-SDK integration with NodeJS",
"main": "./lib/index.js",
"source": "./lib/client.js",
"engines": {
"node": ">= 8.6"
},
"scripts": {
"start": "DEBUG=wechat* node ./demo/index.js",
"dev": "DEBUG=wechat* nodemon -w ./lib -w ./demo ./demo/index.js",
"test": "_mocha --exit test/**/*.js",
"coverage": "istanbul cover _mocha --report lcov -- -R spec --exit test/**/*.js",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"build": "microbundle -f umd -o dist/client.js --name WechatJSSDK --no-sourcemap",
"watch": "microbundle --watch -f umd -o dist/client.js --name WechatJSSDK",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/JasonBoy/wechat-jssdk.git"
},
"keywords": [
"wechat",
"weixin",
"node",
"jssdk",
"wechat share",
"mini program"
],
"author": "Jason Jiang",
"license": "MIT",
"bugs": {
"url": "https://github.com/JasonBoy/wechat-jssdk/issues"
},
"homepage": "https://github.com/JasonBoy/wechat-jssdk#readme",
"dependencies": {
"date-fns": "2.4.1",
"debug": "4.1.1",
"got": "9.6.0",
"lodash.isempty": "4.4.0",
"mongoose": "5.7.5",
"xml2js": "0.4.22"
},
"devDependencies": {
"body-parser": "1.19.0",
"chai": "4.2.0",
"cookie-parser": "1.4.4",
"coveralls": "3.0.7",
"express": "4.17.1",
"express-session": "1.17.0",
"fsevents": "1.2.9",
"husky": "3.0.9",
"istanbul": "0.4.5",
"lint-staged": "9.4.2",
"lowdb": "1.0.0",
"microbundle": "0.12.0-next.3",
"mocha": "6.2.1",
"mocha-lcov-reporter": "1.3.0",
"nodemon": "1.19.3",
"nunjucks": "3.2.0",
"prettier": "1.18.2"
},
"files": [
"dist/client.umd.js",
"lib",
"test",
".coveralls.yml",
".travis.yml",
"LICENSE",
"package.json",
"package-lock.json",
"README.md"
]
}