mini_program_gizwits_sdk 1.0.0-bololo
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.istanbul.yml +4 -0
- package/.travis.yml +23 -0
- package/.vscode/launch.json +19 -0
- package/.vscode/settings.json +3 -0
- package/README.md +402 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +25 -0
- package/global.d.ts +12 -0
- package/package.json +55 -0
- package/yarn-error.log +6901 -0
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mini_program_gizwits_sdk",
|
|
3
|
+
"version": "1.0.0-bololo",
|
|
4
|
+
"description": "更新类型",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "node_modules/mocha/bin/_mocha -r ts-node/register tests/**/*.spec.ts -file ./tests/setup-wx.js -timeout 60s",
|
|
8
|
+
"testBle": "node_modules/mocha/bin/_mocha -r ts-node/register tests/utils/randomCode.spec.ts -file ./tests/setup-wx.js -timeout 60s",
|
|
9
|
+
"build": "rm -rf ./dist && webpack",
|
|
10
|
+
"release": "npm run build && release-it",
|
|
11
|
+
"cover": "istanbul cover node_modules/mocha/bin/_mocha -- -r ts-node/register tests/**/*.spec.ts -file ./tests/setup-wx.js -timeout 60s",
|
|
12
|
+
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/gizwits/mini_program_gizwits_sdk.git"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"gizwits",
|
|
20
|
+
"miniprogram",
|
|
21
|
+
"sdk"
|
|
22
|
+
],
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
|
|
25
|
+
"@release-it/conventional-changelog": "^2.0.0",
|
|
26
|
+
"@types/chai": "^4.2.11",
|
|
27
|
+
"@types/crypto-js": "^4.0.2",
|
|
28
|
+
"@types/mocha": "^7.0.2",
|
|
29
|
+
"@types/node": "^12.12.14",
|
|
30
|
+
"@types/sinon": "^10.0.6",
|
|
31
|
+
"chai": "^4.2.0",
|
|
32
|
+
"coveralls": "^3.0.11",
|
|
33
|
+
"istanbul": "^1.1.0-alpha.1",
|
|
34
|
+
"miniprogram-api-typings": "^3.9.0",
|
|
35
|
+
"mocha": "^7.1.1",
|
|
36
|
+
"release-it": "^14.2.2",
|
|
37
|
+
"sinon": "^9.2.4",
|
|
38
|
+
"ts-loader": "^6.2.2",
|
|
39
|
+
"ts-node": "^8.8.1",
|
|
40
|
+
"typescript": "^4.9.5",
|
|
41
|
+
"uglifyjs-webpack-plugin": "^2.2.0",
|
|
42
|
+
"webpack": "^4.42.1",
|
|
43
|
+
"webpack-bundle-analyzer": "^4.5.0",
|
|
44
|
+
"webpack-cli": "^3.3.11"
|
|
45
|
+
},
|
|
46
|
+
"author": "gizwits",
|
|
47
|
+
"license": "ISC",
|
|
48
|
+
"bugs": {
|
|
49
|
+
"url": "https://github.com/gizwits/mini_program_gizwits_sdk/issues"
|
|
50
|
+
},
|
|
51
|
+
"homepage": "https://github.com/gizwits/mini_program_gizwits_sdk#readme",
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"crypto-js": "^4.1.1"
|
|
54
|
+
}
|
|
55
|
+
}
|