-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
85 lines (85 loc) · 2.06 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
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
{
"name": "wechat-jssdk",
"version": "5.1.0",
"description": "WeChat JS-SDK integration with NodeJS and Web",
"main": "./lib/index.js",
"source": "./lib/client.js",
"browser": "./dist/client.umd.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": "nyc npm run test && nyc report --reporter=lcov",
"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.9.0",
"debug": "4.1.1",
"got": "9.6.0",
"lodash.isempty": "4.4.0",
"mongoose": "5.11.7",
"xml2js": "0.4.23"
},
"devDependencies": {
"body-parser": "1.19.0",
"chai": "4.2.0",
"cookie-parser": "1.4.4",
"coveralls": "3.0.9",
"express": "4.17.1",
"express-session": "1.17.0",
"husky": "3.0.9",
"lint-staged": "9.4.2",
"lowdb": "1.0.0",
"microbundle": "0.12.0-next.3",
"mocha": "6.2.1",
"nodemon": "2.0.2",
"nunjucks": "3.2.0",
"nyc": "15.0.0",
"prettier": "1.19.1"
},
"files": [
"dist/client.umd.js",
"lib",
"test",
".coveralls.yml",
".travis.yml",
"LICENSE",
"package.json",
"README.md"
]
}