-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
38 lines (38 loc) · 1.12 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
{
"name": "wafer-client-sdk",
"version": "0.8.4",
"description": "QCloud 微信小程序客户端 SDK",
"main": "index.js",
"scripts": {
"test": "mocha",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- --reporter spec --check-leaks --bail --slow 200 test/",
"travis-test-cov": "istanbul cover --report lcovonly ./node_modules/mocha/bin/_mocha -- --reporter spec --check-leaks --bail --slow 200 test/",
"coveralls": "npm run travis-test-cov && cat ./coverage/lcov.info | coveralls",
"samver-minor": "npm version minor && git push origin master --tags",
"samver-patch": "npm version patch && git push origin master --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/tencentyun/weapp-client-sdk.git"
},
"keywords": [
"qcloud",
"weapp",
"wechat",
"sdk",
"client",
"auth",
"websocket"
],
"author": "Tencent Cloud",
"license": "MIT",
"devDependencies": {
"coveralls": "^2.11.14",
"istanbul": "^0.4.5",
"mocha": "^3.1.0",
"should": "^11.1.0",
"should-sinon": "0.0.5",
"sinon": "^1.17.6"
},
"dependencies": {}
}