提交 fc1fde6e 编写于 作者: 赵十四's avatar 赵十四

Merge branch 'frontend' of https://gitcode.net/qq_50679803/great-teamwork into frontend

...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
"type" : "uniCloud" "type" : "uniCloud"
}, },
{ {
"playground" : "standard", "playground" : "custom",
"type" : "uni-app:app-android" "type" : "uni-app:app-android"
} }
] ]
......
...@@ -2,6 +2,19 @@ ...@@ -2,6 +2,19 @@
export default { export default {
onLaunch: function() { onLaunch: function() {
console.log('App Launch') console.log('App Launch')
uni.getPushClientId({
success: (res) => {
let push_clientid = res.cid
console.log('客户端推送标识:',push_clientid)
},
fail(err) {
console.log(err)
}
})
uni.onPushMessage((res) => {
console.log("收到推送消息:",res) //监听推送消息
})
}, },
onShow: function() { onShow: function() {
console.log('App Show') console.log('App Show')
......
...@@ -88,6 +88,9 @@ ...@@ -88,6 +88,9 @@
getApp().globalData.school = res.result.data.school getApp().globalData.school = res.result.data.school
getApp().globalData.moblie = res.result.data.phone_num getApp().globalData.moblie = res.result.data.phone_num
getApp().globalData.gender = res.result.data.gender getApp().globalData.gender = res.result.data.gender
getApp().globalData.teamNameStorageCount=1,
getApp().globalData.runningRecordStorageCount=1,
getApp().globalData.walkingRecordStorageCount=1,
console.log(res) console.log(res)
uni.showToast({ uni.showToast({
title: '登录成功', title: '登录成功',
......
...@@ -130,12 +130,13 @@ ...@@ -130,12 +130,13 @@
this.nickname = getApp().globalData.name; this.nickname = getApp().globalData.name;
this.schoolName = getApp().globalData.school; this.schoolName = getApp().globalData.school;
this.userId = getApp().globalData.userId; this.userId = getApp().globalData.userId;
console.log(getApp().globalData.teamNameStorageCount);
if(getApp().globalData.teamNameStorageCount==1) {//增删改查 if(getApp().globalData.teamNameStorageCount==1) {//增删改查
this.getData(); this.getData();
}else { }else {
uni.getStorage({ uni.getStorage({
key: 'teamName_key', key: 'teamName_key',
success: function (res) { success: (res)=> {
console.log(res.data); console.log(res.data);
this.teamName=res.data; this.teamName=res.data;
console.log(this.teamName); console.log(this.teamName);
......
...@@ -47,6 +47,8 @@ ...@@ -47,6 +47,8 @@
animationDuration: 300 animationDuration: 300
}) })
this.$refs.alertDialog.close(); this.$refs.alertDialog.close();
uni.clearStorage();
console.log(1);
}, },
dialogClose() { dialogClose() {
this.$refsalertDialog.close(); this.$refsalertDialog.close();
......
...@@ -32,9 +32,11 @@ ...@@ -32,9 +32,11 @@
this.digit-- this.digit--
if (this.digit == 0) { if (this.digit == 0) {
this.go = true this.go = true
Voice('Go')
}
if (this.digit == -1) {
clearInterval(this.timer); clearInterval(this.timer);
this.timer = null; this.timer = null;
Voice('Go')
uni.reLaunch({ uni.reLaunch({
url: '/pages/sport/start?type=' + this.type, url: '/pages/sport/start?type=' + this.type,
animationType: 'pop-in', animationType: 'pop-in',
......
...@@ -6,7 +6,10 @@ case `uname` in ...@@ -6,7 +6,10 @@ case `uname` in
esac esac
if [ -x "$basedir/node" ]; then if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../semver/bin/semver" "$@" "$basedir/node" "$basedir/../semver/bin/semver" "$@"
ret=$?
else else
exec node "$basedir/../semver/bin/semver" "$@" node "$basedir/../semver/bin/semver" "$@"
ret=$?
fi fi
exit $ret
@ECHO off @ECHO off
GOTO start
:find_dp0
SET dp0=%~dp0
EXIT /b
:start
SETLOCAL SETLOCAL
CALL :find_dp0 CALL :find_dp0
...@@ -14,4 +9,9 @@ IF EXIST "%dp0%\node.exe" ( ...@@ -14,4 +9,9 @@ IF EXIST "%dp0%\node.exe" (
SET PATHEXT=%PATHEXT:;.JS;=;% SET PATHEXT=%PATHEXT:;.JS;=;%
) )
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\semver\bin\semver" %* "%_prog%" "%dp0%\..\semver\bin\semver" %*
ENDLOCAL
EXIT /b %errorlevel%
:find_dp0
SET dp0=%~dp0
EXIT /b
...@@ -9,20 +9,10 @@ if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { ...@@ -9,20 +9,10 @@ if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
} }
$ret=0 $ret=0
if (Test-Path "$basedir/node$exe") { if (Test-Path "$basedir/node$exe") {
# Support pipeline input & "$basedir/node$exe" "$basedir/../semver/bin/semver" $args
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../semver/bin/semver" $args
} else {
& "$basedir/node$exe" "$basedir/../semver/bin/semver" $args
}
$ret=$LASTEXITCODE $ret=$LASTEXITCODE
} else { } else {
# Support pipeline input & "node$exe" "$basedir/../semver/bin/semver" $args
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../semver/bin/semver" $args
} else {
& "node$exe" "$basedir/../semver/bin/semver" $args
}
$ret=$LASTEXITCODE $ret=$LASTEXITCODE
} }
exit $ret exit $ret
{ {
"name": "buffer-equal-constant-time", "_from": "buffer-equal-constant-time@1.0.1",
"version": "1.0.1", "_id": "buffer-equal-constant-time@1.0.1",
"_inBundle": false,
"_integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==",
"_location": "/buffer-equal-constant-time",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "buffer-equal-constant-time@1.0.1",
"name": "buffer-equal-constant-time",
"escapedName": "buffer-equal-constant-time",
"rawSpec": "1.0.1",
"saveSpec": null,
"fetchSpec": "1.0.1"
},
"_requiredBy": [
"/jwa"
],
"_resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
"_shasum": "f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819",
"_spec": "buffer-equal-constant-time@1.0.1",
"_where": "D:\\gitcode\\great-teamwork\\teamwork\\uni_modules\\uni-id-pages\\uniCloud\\cloudfunctions\\uni-id-co\\node_modules\\jwa",
"author": {
"name": "GoInstant Inc., a salesforce.com company"
},
"bugs": {
"url": "https://github.com/goinstant/buffer-equal-constant-time/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "Constant-time comparison of Buffers", "description": "Constant-time comparison of Buffers",
"main": "index.js", "devDependencies": {
"scripts": { "mocha": "~1.15.1"
"test": "mocha test.js"
}, },
"repository": "git@github.com:goinstant/buffer-equal-constant-time.git", "homepage": "https://github.com/goinstant/buffer-equal-constant-time#readme",
"keywords": [ "keywords": [
"buffer", "buffer",
"equal", "equal",
"constant-time", "constant-time",
"crypto" "crypto"
], ],
"author": "GoInstant Inc., a salesforce.com company",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
"devDependencies": { "main": "index.js",
"mocha": "~1.15.1" "name": "buffer-equal-constant-time",
} "repository": {
"type": "git",
"url": "git+ssh://git@github.com/goinstant/buffer-equal-constant-time.git"
},
"scripts": {
"test": "mocha test.js"
},
"version": "1.0.1"
} }
{ {
"name": "ecdsa-sig-formatter", "_from": "ecdsa-sig-formatter@1.0.11",
"version": "1.0.11", "_id": "ecdsa-sig-formatter@1.0.11",
"description": "Translate ECDSA signatures between ASN.1/DER and JOSE-style concatenation", "_inBundle": false,
"main": "src/ecdsa-sig-formatter.js", "_integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
"scripts": { "_location": "/ecdsa-sig-formatter",
"check-style": "eslint .", "_phantomChildren": {},
"pretest": "npm run check-style", "_requested": {
"test": "istanbul cover --root src _mocha -- spec", "type": "version",
"report-cov": "cat ./coverage/lcov.info | coveralls" "registry": true,
"raw": "ecdsa-sig-formatter@1.0.11",
"name": "ecdsa-sig-formatter",
"escapedName": "ecdsa-sig-formatter",
"rawSpec": "1.0.11",
"saveSpec": null,
"fetchSpec": "1.0.11"
}, },
"typings": "./src/ecdsa-sig-formatter.d.ts", "_requiredBy": [
"repository": { "/jwa"
"type": "git",
"url": "git+ssh://git@github.com/Brightspace/node-ecdsa-sig-formatter.git"
},
"keywords": [
"ecdsa",
"der",
"asn.1",
"jwt",
"jwa",
"jsonwebtoken",
"jose"
], ],
"author": "D2L Corporation", "_resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
"license": "Apache-2.0", "_shasum": "ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf",
"_spec": "ecdsa-sig-formatter@1.0.11",
"_where": "D:\\gitcode\\great-teamwork\\teamwork\\uni_modules\\uni-id-pages\\uniCloud\\cloudfunctions\\uni-id-co\\node_modules\\jwa",
"author": {
"name": "D2L Corporation"
},
"bugs": { "bugs": {
"url": "https://github.com/Brightspace/node-ecdsa-sig-formatter/issues" "url": "https://github.com/Brightspace/node-ecdsa-sig-formatter/issues"
}, },
"homepage": "https://github.com/Brightspace/node-ecdsa-sig-formatter#readme", "bundleDependencies": false,
"dependencies": { "dependencies": {
"safe-buffer": "^5.0.1" "safe-buffer": "^5.0.1"
}, },
"deprecated": false,
"description": "Translate ECDSA signatures between ASN.1/DER and JOSE-style concatenation",
"devDependencies": { "devDependencies": {
"bench": "^0.3.6", "bench": "^0.3.6",
"chai": "^3.5.0", "chai": "^3.5.0",
...@@ -42,5 +44,30 @@ ...@@ -42,5 +44,30 @@
"jwk-to-pem": "^1.2.5", "jwk-to-pem": "^1.2.5",
"mocha": "^2.5.3", "mocha": "^2.5.3",
"native-crypto": "^1.7.0" "native-crypto": "^1.7.0"
} },
"homepage": "https://github.com/Brightspace/node-ecdsa-sig-formatter#readme",
"keywords": [
"ecdsa",
"der",
"asn.1",
"jwt",
"jwa",
"jsonwebtoken",
"jose"
],
"license": "Apache-2.0",
"main": "src/ecdsa-sig-formatter.js",
"name": "ecdsa-sig-formatter",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Brightspace/node-ecdsa-sig-formatter.git"
},
"scripts": {
"check-style": "eslint .",
"pretest": "npm run check-style",
"report-cov": "cat ./coverage/lcov.info | coveralls",
"test": "istanbul cover --root src _mocha -- spec"
},
"typings": "./src/ecdsa-sig-formatter.d.ts",
"version": "1.0.11"
} }
{ {
"name": "jsonwebtoken", "_from": "jsonwebtoken@8.5.1",
"version": "8.5.1", "_id": "jsonwebtoken@8.5.1",
"description": "JSON Web Token implementation (symmetric and asymmetric)", "_inBundle": false,
"main": "index.js", "_integrity": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==",
"nyc": { "_location": "/jsonwebtoken",
"check-coverage": true, "_phantomChildren": {},
"lines": 95, "_requested": {
"statements": 95, "type": "version",
"functions": 100, "registry": true,
"branches": 95, "raw": "jsonwebtoken@8.5.1",
"exclude": [ "name": "jsonwebtoken",
"./test/**" "escapedName": "jsonwebtoken",
], "rawSpec": "8.5.1",
"reporter": [ "saveSpec": null,
"json", "fetchSpec": "8.5.1"
"lcov",
"text-summary"
]
},
"scripts": {
"lint": "eslint .",
"coverage": "nyc mocha --use_strict",
"test": "npm run lint && npm run coverage && cost-of-modules"
}, },
"repository": { "_requiredBy": [
"type": "git", "/"
"url": "https://github.com/auth0/node-jsonwebtoken"
},
"keywords": [
"jwt"
], ],
"author": "auth0", "_resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz",
"license": "MIT", "_shasum": "00e71e0b8df54c2121a1f26137df2280673bcc0d",
"_spec": "jsonwebtoken@8.5.1",
"_where": "D:\\gitcode\\great-teamwork\\teamwork\\uni_modules\\uni-id-pages\\uniCloud\\cloudfunctions\\uni-id-co",
"author": {
"name": "auth0"
},
"bugs": { "bugs": {
"url": "https://github.com/auth0/node-jsonwebtoken/issues" "url": "https://github.com/auth0/node-jsonwebtoken/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"jws": "^3.2.2", "jws": "^3.2.2",
"lodash.includes": "^4.3.0", "lodash.includes": "^4.3.0",
...@@ -47,6 +41,8 @@ ...@@ -47,6 +41,8 @@
"ms": "^2.1.1", "ms": "^2.1.1",
"semver": "^5.6.0" "semver": "^5.6.0"
}, },
"deprecated": false,
"description": "JSON Web Token implementation (symmetric and asymmetric)",
"devDependencies": { "devDependencies": {
"atob": "^2.1.2", "atob": "^2.1.2",
"chai": "^4.1.2", "chai": "^4.1.2",
...@@ -59,13 +55,45 @@ ...@@ -59,13 +55,45 @@
"sinon": "^6.0.0" "sinon": "^6.0.0"
}, },
"engines": { "engines": {
"npm": ">=1.4.28", "node": ">=4",
"node": ">=4" "npm": ">=1.4.28"
}, },
"files": [ "files": [
"lib", "lib",
"decode.js", "decode.js",
"sign.js", "sign.js",
"verify.js" "verify.js"
] ],
"homepage": "https://github.com/auth0/node-jsonwebtoken#readme",
"keywords": [
"jwt"
],
"license": "MIT",
"main": "index.js",
"name": "jsonwebtoken",
"nyc": {
"check-coverage": true,
"lines": 95,
"statements": 95,
"functions": 100,
"branches": 95,
"exclude": [
"./test/**"
],
"reporter": [
"json",
"lcov",
"text-summary"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/auth0/node-jsonwebtoken.git"
},
"scripts": {
"coverage": "nyc mocha --use_strict",
"lint": "eslint .",
"test": "npm run lint && npm run coverage && cost-of-modules"
},
"version": "8.5.1"
} }
{ {
"name": "jwa", "_from": "jwa@^1.4.1",
"version": "1.4.1", "_id": "jwa@1.4.1",
"description": "JWA implementation (supports all JWS algorithms)", "_inBundle": false,
"main": "index.js", "_integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==",
"directories": { "_location": "/jwa",
"test": "test" "_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "jwa@^1.4.1",
"name": "jwa",
"escapedName": "jwa",
"rawSpec": "^1.4.1",
"saveSpec": null,
"fetchSpec": "^1.4.1"
},
"_requiredBy": [
"/jws"
],
"_resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz",
"_shasum": "743c32985cb9e98655530d53641b66c8645b039a",
"_spec": "jwa@^1.4.1",
"_where": "D:\\gitcode\\great-teamwork\\teamwork\\uni_modules\\uni-id-pages\\uniCloud\\cloudfunctions\\uni-id-co\\node_modules\\jws",
"author": {
"name": "Brian J. Brennan",
"email": "brianloveswords@gmail.com"
}, },
"bugs": {
"url": "https://github.com/brianloveswords/node-jwa/issues"
},
"bundleDependencies": false,
"dependencies": { "dependencies": {
"buffer-equal-constant-time": "1.0.1", "buffer-equal-constant-time": "1.0.1",
"ecdsa-sig-formatter": "1.0.11", "ecdsa-sig-formatter": "1.0.11",
"safe-buffer": "^5.0.1" "safe-buffer": "^5.0.1"
}, },
"deprecated": false,
"description": "JWA implementation (supports all JWS algorithms)",
"devDependencies": { "devDependencies": {
"base64url": "^2.0.0", "base64url": "^2.0.0",
"jwk-to-pem": "^2.0.1", "jwk-to-pem": "^2.0.1",
"semver": "4.3.6", "semver": "4.3.6",
"tap": "6.2.0" "tap": "6.2.0"
}, },
"scripts": { "directories": {
"test": "make test" "test": "test"
},
"repository": {
"type": "git",
"url": "git://github.com/brianloveswords/node-jwa.git"
}, },
"homepage": "https://github.com/brianloveswords/node-jwa#readme",
"keywords": [ "keywords": [
"jwa", "jwa",
"jws", "jws",
...@@ -32,6 +55,15 @@ ...@@ -32,6 +55,15 @@
"ecdsa", "ecdsa",
"hmac" "hmac"
], ],
"author": "Brian J. Brennan <brianloveswords@gmail.com>", "license": "MIT",
"license": "MIT" "main": "index.js",
"name": "jwa",
"repository": {
"type": "git",
"url": "git://github.com/brianloveswords/node-jwa.git"
},
"scripts": {
"test": "make test"
},
"version": "1.4.1"
} }
{ {
"name": "jws", "_from": "jws@^3.2.2",
"version": "3.2.2", "_id": "jws@3.2.2",
"_inBundle": false,
"_integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==",
"_location": "/jws",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "jws@^3.2.2",
"name": "jws",
"escapedName": "jws",
"rawSpec": "^3.2.2",
"saveSpec": null,
"fetchSpec": "^3.2.2"
},
"_requiredBy": [
"/jsonwebtoken"
],
"_resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz",
"_shasum": "001099f3639468c9414000e99995fa52fb478304",
"_spec": "jws@^3.2.2",
"_where": "D:\\gitcode\\great-teamwork\\teamwork\\uni_modules\\uni-id-pages\\uniCloud\\cloudfunctions\\uni-id-co\\node_modules\\jsonwebtoken",
"author": {
"name": "Brian J Brennan"
},
"bugs": {
"url": "https://github.com/brianloveswords/node-jws/issues"
},
"bundleDependencies": false,
"dependencies": {
"jwa": "^1.4.1",
"safe-buffer": "^5.0.1"
},
"deprecated": false,
"description": "Implementation of JSON Web Signatures", "description": "Implementation of JSON Web Signatures",
"main": "index.js", "devDependencies": {
"semver": "^5.1.0",
"tape": "~2.14.0"
},
"directories": { "directories": {
"test": "test" "test": "test"
}, },
"scripts": { "gitHead": "c0f6b27bcea5a2ad2e304d91c2e842e4076a6b03",
"test": "make test" "homepage": "https://github.com/brianloveswords/node-jws#readme",
},
"repository": {
"type": "git",
"url": "git://github.com/brianloveswords/node-jws.git"
},
"keywords": [ "keywords": [
"jws", "jws",
"json", "json",
"web", "web",
"signatures" "signatures"
], ],
"author": "Brian J Brennan",
"license": "MIT", "license": "MIT",
"readmeFilename": "readme.md", "main": "index.js",
"gitHead": "c0f6b27bcea5a2ad2e304d91c2e842e4076a6b03", "name": "jws",
"dependencies": { "repository": {
"jwa": "^1.4.1", "type": "git",
"safe-buffer": "^5.0.1" "url": "git://github.com/brianloveswords/node-jws.git"
}, },
"devDependencies": { "scripts": {
"semver": "^5.1.0", "test": "make test"
"tape": "~2.14.0" },
} "version": "3.2.2"
} }
{ {
"name": "lodash.includes", "_from": "lodash.includes@^4.3.0",
"version": "4.3.0", "_id": "lodash.includes@4.3.0",
"_inBundle": false,
"_integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==",
"_location": "/lodash.includes",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "lodash.includes@^4.3.0",
"name": "lodash.includes",
"escapedName": "lodash.includes",
"rawSpec": "^4.3.0",
"saveSpec": null,
"fetchSpec": "^4.3.0"
},
"_requiredBy": [
"/jsonwebtoken"
],
"_resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz",
"_shasum": "60bb98a87cb923c68ca1e51325483314849f553f",
"_spec": "lodash.includes@^4.3.0",
"_where": "D:\\gitcode\\great-teamwork\\teamwork\\uni_modules\\uni-id-pages\\uniCloud\\cloudfunctions\\uni-id-co\\node_modules\\jsonwebtoken",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
{
"name": "Blaine Bublitz",
"email": "blaine.bublitz@gmail.com",
"url": "https://github.com/phated"
},
{
"name": "Mathias Bynens",
"email": "mathias@qiwi.be",
"url": "https://mathiasbynens.be/"
}
],
"deprecated": false,
"description": "The lodash method `_.includes` exported as a module.", "description": "The lodash method `_.includes` exported as a module.",
"homepage": "https://lodash.com/", "homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg", "icon": "https://lodash.com/icon.svg",
"license": "MIT", "keywords": [
"keywords": "lodash-modularized, includes", "lodash-modularized",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)", "includes"
"contributors": [
"John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"Blaine Bublitz <blaine.bublitz@gmail.com> (https://github.com/phated)",
"Mathias Bynens <mathias@qiwi.be> (https://mathiasbynens.be/)"
], ],
"repository": "lodash/lodash", "license": "MIT",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } "name": "lodash.includes",
"repository": {
"type": "git",
"url": "git+https://github.com/lodash/lodash.git"
},
"scripts": {
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
},
"version": "4.3.0"
} }
{ {
"name": "lodash.isboolean", "_from": "lodash.isboolean@^3.0.3",
"version": "3.0.3", "_id": "lodash.isboolean@3.0.3",
"_inBundle": false,
"_integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==",
"_location": "/lodash.isboolean",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "lodash.isboolean@^3.0.3",
"name": "lodash.isboolean",
"escapedName": "lodash.isboolean",
"rawSpec": "^3.0.3",
"saveSpec": null,
"fetchSpec": "^3.0.3"
},
"_requiredBy": [
"/jsonwebtoken"
],
"_resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz",
"_shasum": "6c2e171db2a257cd96802fd43b01b20d5f5870f6",
"_spec": "lodash.isboolean@^3.0.3",
"_where": "D:\\gitcode\\great-teamwork\\teamwork\\uni_modules\\uni-id-pages\\uniCloud\\cloudfunctions\\uni-id-co\\node_modules\\jsonwebtoken",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
{
"name": "Blaine Bublitz",
"email": "blaine@iceddev.com",
"url": "https://github.com/phated"
},
{
"name": "Mathias Bynens",
"email": "mathias@qiwi.be",
"url": "https://mathiasbynens.be/"
}
],
"deprecated": false,
"description": "The lodash method `_.isBoolean` exported as a module.", "description": "The lodash method `_.isBoolean` exported as a module.",
"homepage": "https://lodash.com/", "homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg", "icon": "https://lodash.com/icon.svg",
"license": "MIT", "keywords": [
"keywords": "lodash-modularized, isboolean", "lodash-modularized",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)", "isboolean"
"contributors": [
"John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"Blaine Bublitz <blaine@iceddev.com> (https://github.com/phated)",
"Mathias Bynens <mathias@qiwi.be> (https://mathiasbynens.be/)"
], ],
"repository": "lodash/lodash", "license": "MIT",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } "name": "lodash.isboolean",
"repository": {
"type": "git",
"url": "git+https://github.com/lodash/lodash.git"
},
"scripts": {
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
},
"version": "3.0.3"
} }
{ {
"name": "lodash.isinteger", "_from": "lodash.isinteger@^4.0.4",
"version": "4.0.4", "_id": "lodash.isinteger@4.0.4",
"_inBundle": false,
"_integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==",
"_location": "/lodash.isinteger",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "lodash.isinteger@^4.0.4",
"name": "lodash.isinteger",
"escapedName": "lodash.isinteger",
"rawSpec": "^4.0.4",
"saveSpec": null,
"fetchSpec": "^4.0.4"
},
"_requiredBy": [
"/jsonwebtoken"
],
"_resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz",
"_shasum": "619c0af3d03f8b04c31f5882840b77b11cd68343",
"_spec": "lodash.isinteger@^4.0.4",
"_where": "D:\\gitcode\\great-teamwork\\teamwork\\uni_modules\\uni-id-pages\\uniCloud\\cloudfunctions\\uni-id-co\\node_modules\\jsonwebtoken",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
{
"name": "Blaine Bublitz",
"email": "blaine.bublitz@gmail.com",
"url": "https://github.com/phated"
},
{
"name": "Mathias Bynens",
"email": "mathias@qiwi.be",
"url": "https://mathiasbynens.be/"
}
],
"deprecated": false,
"description": "The lodash method `_.isInteger` exported as a module.", "description": "The lodash method `_.isInteger` exported as a module.",
"homepage": "https://lodash.com/", "homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg", "icon": "https://lodash.com/icon.svg",
"license": "MIT", "keywords": [
"keywords": "lodash-modularized, isinteger", "lodash-modularized",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)", "isinteger"
"contributors": [
"John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"Blaine Bublitz <blaine.bublitz@gmail.com> (https://github.com/phated)",
"Mathias Bynens <mathias@qiwi.be> (https://mathiasbynens.be/)"
], ],
"repository": "lodash/lodash", "license": "MIT",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } "name": "lodash.isinteger",
"repository": {
"type": "git",
"url": "git+https://github.com/lodash/lodash.git"
},
"scripts": {
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
},
"version": "4.0.4"
} }
{ {
"name": "lodash.isnumber", "_from": "lodash.isnumber@^3.0.3",
"version": "3.0.3", "_id": "lodash.isnumber@3.0.3",
"_inBundle": false,
"_integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==",
"_location": "/lodash.isnumber",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "lodash.isnumber@^3.0.3",
"name": "lodash.isnumber",
"escapedName": "lodash.isnumber",
"rawSpec": "^3.0.3",
"saveSpec": null,
"fetchSpec": "^3.0.3"
},
"_requiredBy": [
"/jsonwebtoken"
],
"_resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz",
"_shasum": "3ce76810c5928d03352301ac287317f11c0b1ffc",
"_spec": "lodash.isnumber@^3.0.3",
"_where": "D:\\gitcode\\great-teamwork\\teamwork\\uni_modules\\uni-id-pages\\uniCloud\\cloudfunctions\\uni-id-co\\node_modules\\jsonwebtoken",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
{
"name": "Blaine Bublitz",
"email": "blaine@iceddev.com",
"url": "https://github.com/phated"
},
{
"name": "Mathias Bynens",
"email": "mathias@qiwi.be",
"url": "https://mathiasbynens.be/"
}
],
"deprecated": false,
"description": "The lodash method `_.isNumber` exported as a module.", "description": "The lodash method `_.isNumber` exported as a module.",
"homepage": "https://lodash.com/", "homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg", "icon": "https://lodash.com/icon.svg",
"license": "MIT", "keywords": [
"keywords": "lodash-modularized, isnumber", "lodash-modularized",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)", "isnumber"
"contributors": [
"John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"Blaine Bublitz <blaine@iceddev.com> (https://github.com/phated)",
"Mathias Bynens <mathias@qiwi.be> (https://mathiasbynens.be/)"
], ],
"repository": "lodash/lodash", "license": "MIT",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } "name": "lodash.isnumber",
"repository": {
"type": "git",
"url": "git+https://github.com/lodash/lodash.git"
},
"scripts": {
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
},
"version": "3.0.3"
} }
{ {
"name": "lodash.isplainobject", "_from": "lodash.isplainobject@^4.0.6",
"version": "4.0.6", "_id": "lodash.isplainobject@4.0.6",
"_inBundle": false,
"_integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==",
"_location": "/lodash.isplainobject",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "lodash.isplainobject@^4.0.6",
"name": "lodash.isplainobject",
"escapedName": "lodash.isplainobject",
"rawSpec": "^4.0.6",
"saveSpec": null,
"fetchSpec": "^4.0.6"
},
"_requiredBy": [
"/jsonwebtoken"
],
"_resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
"_shasum": "7c526a52d89b45c45cc690b88163be0497f550cb",
"_spec": "lodash.isplainobject@^4.0.6",
"_where": "D:\\gitcode\\great-teamwork\\teamwork\\uni_modules\\uni-id-pages\\uniCloud\\cloudfunctions\\uni-id-co\\node_modules\\jsonwebtoken",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
{
"name": "Blaine Bublitz",
"email": "blaine.bublitz@gmail.com",
"url": "https://github.com/phated"
},
{
"name": "Mathias Bynens",
"email": "mathias@qiwi.be",
"url": "https://mathiasbynens.be/"
}
],
"deprecated": false,
"description": "The lodash method `_.isPlainObject` exported as a module.", "description": "The lodash method `_.isPlainObject` exported as a module.",
"homepage": "https://lodash.com/", "homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg", "icon": "https://lodash.com/icon.svg",
"license": "MIT", "keywords": [
"keywords": "lodash-modularized, isplainobject", "lodash-modularized",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)", "isplainobject"
"contributors": [
"John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"Blaine Bublitz <blaine.bublitz@gmail.com> (https://github.com/phated)",
"Mathias Bynens <mathias@qiwi.be> (https://mathiasbynens.be/)"
], ],
"repository": "lodash/lodash", "license": "MIT",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } "name": "lodash.isplainobject",
"repository": {
"type": "git",
"url": "git+https://github.com/lodash/lodash.git"
},
"scripts": {
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
},
"version": "4.0.6"
} }
{ {
"name": "lodash.isstring", "_from": "lodash.isstring@^4.0.1",
"version": "4.0.1", "_id": "lodash.isstring@4.0.1",
"_inBundle": false,
"_integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==",
"_location": "/lodash.isstring",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "lodash.isstring@^4.0.1",
"name": "lodash.isstring",
"escapedName": "lodash.isstring",
"rawSpec": "^4.0.1",
"saveSpec": null,
"fetchSpec": "^4.0.1"
},
"_requiredBy": [
"/jsonwebtoken"
],
"_resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz",
"_shasum": "d527dfb5456eca7cc9bb95d5daeaf88ba54a5451",
"_spec": "lodash.isstring@^4.0.1",
"_where": "D:\\gitcode\\great-teamwork\\teamwork\\uni_modules\\uni-id-pages\\uniCloud\\cloudfunctions\\uni-id-co\\node_modules\\jsonwebtoken",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
{
"name": "Blaine Bublitz",
"email": "blaine@iceddev.com",
"url": "https://github.com/phated"
},
{
"name": "Mathias Bynens",
"email": "mathias@qiwi.be",
"url": "https://mathiasbynens.be/"
}
],
"deprecated": false,
"description": "The lodash method `_.isString` exported as a module.", "description": "The lodash method `_.isString` exported as a module.",
"homepage": "https://lodash.com/", "homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg", "icon": "https://lodash.com/icon.svg",
"license": "MIT", "keywords": [
"keywords": "lodash-modularized, isstring", "lodash-modularized",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)", "isstring"
"contributors": [
"John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"Blaine Bublitz <blaine@iceddev.com> (https://github.com/phated)",
"Mathias Bynens <mathias@qiwi.be> (https://mathiasbynens.be/)"
], ],
"repository": "lodash/lodash", "license": "MIT",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } "name": "lodash.isstring",
"repository": {
"type": "git",
"url": "git+https://github.com/lodash/lodash.git"
},
"scripts": {
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
},
"version": "4.0.1"
} }
{ {
"name": "lodash.merge", "_from": "lodash.merge@4.6.2",
"version": "4.6.2", "_id": "lodash.merge@4.6.2",
"_inBundle": false,
"_integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
"_location": "/lodash.merge",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "lodash.merge@4.6.2",
"name": "lodash.merge",
"escapedName": "lodash.merge",
"rawSpec": "4.6.2",
"saveSpec": null,
"fetchSpec": "4.6.2"
},
"_requiredBy": [
"/"
],
"_resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
"_shasum": "558aa53b43b661e1925a0afdfa36a9a1085fe57a",
"_spec": "lodash.merge@4.6.2",
"_where": "D:\\gitcode\\great-teamwork\\teamwork\\uni_modules\\uni-id-pages\\uniCloud\\cloudfunctions\\uni-id-co",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com"
},
{
"name": "Mathias Bynens",
"email": "mathias@qiwi.be"
}
],
"deprecated": false,
"description": "The Lodash method `_.merge` exported as a module.", "description": "The Lodash method `_.merge` exported as a module.",
"homepage": "https://lodash.com/", "homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg", "icon": "https://lodash.com/icon.svg",
"license": "MIT", "keywords": [
"keywords": "lodash-modularized, merge", "lodash-modularized",
"author": "John-David Dalton <john.david.dalton@gmail.com>", "merge"
"contributors": [
"John-David Dalton <john.david.dalton@gmail.com>",
"Mathias Bynens <mathias@qiwi.be>"
], ],
"repository": "lodash/lodash", "license": "MIT",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } "name": "lodash.merge",
"repository": {
"type": "git",
"url": "git+https://github.com/lodash/lodash.git"
},
"scripts": {
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
},
"version": "4.6.2"
} }
{ {
"name": "lodash.once", "_from": "lodash.once@^4.0.0",
"version": "4.1.1", "_id": "lodash.once@4.1.1",
"_inBundle": false,
"_integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==",
"_location": "/lodash.once",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "lodash.once@^4.0.0",
"name": "lodash.once",
"escapedName": "lodash.once",
"rawSpec": "^4.0.0",
"saveSpec": null,
"fetchSpec": "^4.0.0"
},
"_requiredBy": [
"/jsonwebtoken"
],
"_resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
"_shasum": "0dd3971213c7c56df880977d504c88fb471a97ac",
"_spec": "lodash.once@^4.0.0",
"_where": "D:\\gitcode\\great-teamwork\\teamwork\\uni_modules\\uni-id-pages\\uniCloud\\cloudfunctions\\uni-id-co\\node_modules\\jsonwebtoken",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
{
"name": "Blaine Bublitz",
"email": "blaine.bublitz@gmail.com",
"url": "https://github.com/phated"
},
{
"name": "Mathias Bynens",
"email": "mathias@qiwi.be",
"url": "https://mathiasbynens.be/"
}
],
"deprecated": false,
"description": "The lodash method `_.once` exported as a module.", "description": "The lodash method `_.once` exported as a module.",
"homepage": "https://lodash.com/", "homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg", "icon": "https://lodash.com/icon.svg",
"license": "MIT", "keywords": [
"keywords": "lodash-modularized, once", "lodash-modularized",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)", "once"
"contributors": [
"John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"Blaine Bublitz <blaine.bublitz@gmail.com> (https://github.com/phated)",
"Mathias Bynens <mathias@qiwi.be> (https://mathiasbynens.be/)"
], ],
"repository": "lodash/lodash", "license": "MIT",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } "name": "lodash.once",
"repository": {
"type": "git",
"url": "git+https://github.com/lodash/lodash.git"
},
"scripts": {
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
},
"version": "4.1.1"
} }
{ {
"name": "ms", "_from": "ms@^2.1.1",
"version": "2.1.3", "_id": "ms@2.1.3",
"description": "Tiny millisecond conversion utility", "_inBundle": false,
"repository": "vercel/ms", "_integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
"main": "./index", "_location": "/ms",
"files": [ "_phantomChildren": {},
"index.js" "_requested": {
"type": "range",
"registry": true,
"raw": "ms@^2.1.1",
"name": "ms",
"escapedName": "ms",
"rawSpec": "^2.1.1",
"saveSpec": null,
"fetchSpec": "^2.1.1"
},
"_requiredBy": [
"/jsonwebtoken"
], ],
"scripts": { "_resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
"precommit": "lint-staged", "_shasum": "574c8138ce1d2b5861f0b44579dbadd60c6615b2",
"lint": "eslint lib/* bin/*", "_spec": "ms@^2.1.1",
"test": "mocha tests.js" "_where": "D:\\gitcode\\great-teamwork\\teamwork\\uni_modules\\uni-id-pages\\uniCloud\\cloudfunctions\\uni-id-co\\node_modules\\jsonwebtoken",
"bugs": {
"url": "https://github.com/vercel/ms/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "Tiny millisecond conversion utility",
"devDependencies": {
"eslint": "4.18.2",
"expect.js": "0.3.1",
"husky": "0.14.3",
"lint-staged": "5.0.0",
"mocha": "4.0.1",
"prettier": "2.0.5"
}, },
"eslintConfig": { "eslintConfig": {
"extends": "eslint:recommended", "extends": "eslint:recommended",
...@@ -19,6 +43,11 @@ ...@@ -19,6 +43,11 @@
"es6": true "es6": true
} }
}, },
"files": [
"index.js"
],
"homepage": "https://github.com/vercel/ms#readme",
"license": "MIT",
"lint-staged": { "lint-staged": {
"*.js": [ "*.js": [
"npm run lint", "npm run lint",
...@@ -26,13 +55,16 @@ ...@@ -26,13 +55,16 @@
"git add" "git add"
] ]
}, },
"license": "MIT", "main": "./index",
"devDependencies": { "name": "ms",
"eslint": "4.18.2", "repository": {
"expect.js": "0.3.1", "type": "git",
"husky": "0.14.3", "url": "git+https://github.com/vercel/ms.git"
"lint-staged": "5.0.0", },
"mocha": "4.0.1", "scripts": {
"prettier": "2.0.5" "lint": "eslint lib/* bin/*",
} "precommit": "lint-staged",
"test": "mocha tests.js"
},
"version": "2.1.3"
} }
{ {
"name": "safe-buffer", "_from": "safe-buffer@^5.0.1",
"description": "Safer Node.js Buffer API", "_id": "safe-buffer@5.2.1",
"version": "5.2.1", "_inBundle": false,
"_integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
"_location": "/safe-buffer",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "safe-buffer@^5.0.1",
"name": "safe-buffer",
"escapedName": "safe-buffer",
"rawSpec": "^5.0.1",
"saveSpec": null,
"fetchSpec": "^5.0.1"
},
"_requiredBy": [
"/ecdsa-sig-formatter",
"/jwa",
"/jws"
],
"_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
"_shasum": "1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6",
"_spec": "safe-buffer@^5.0.1",
"_where": "D:\\gitcode\\great-teamwork\\teamwork\\uni_modules\\uni-id-pages\\uniCloud\\cloudfunctions\\uni-id-co\\node_modules\\jws",
"author": { "author": {
"name": "Feross Aboukhadijeh", "name": "Feross Aboukhadijeh",
"email": "feross@feross.org", "email": "feross@feross.org",
...@@ -10,10 +32,27 @@ ...@@ -10,10 +32,27 @@
"bugs": { "bugs": {
"url": "https://github.com/feross/safe-buffer/issues" "url": "https://github.com/feross/safe-buffer/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "Safer Node.js Buffer API",
"devDependencies": { "devDependencies": {
"standard": "*", "standard": "*",
"tape": "^5.0.0" "tape": "^5.0.0"
}, },
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"homepage": "https://github.com/feross/safe-buffer", "homepage": "https://github.com/feross/safe-buffer",
"keywords": [ "keywords": [
"buffer", "buffer",
...@@ -26,7 +65,7 @@ ...@@ -26,7 +65,7 @@
], ],
"license": "MIT", "license": "MIT",
"main": "index.js", "main": "index.js",
"types": "index.d.ts", "name": "safe-buffer",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git://github.com/feross/safe-buffer.git" "url": "git://github.com/feross/safe-buffer.git"
...@@ -34,18 +73,6 @@ ...@@ -34,18 +73,6 @@
"scripts": { "scripts": {
"test": "standard && tape test/*.js" "test": "standard && tape test/*.js"
}, },
"funding": [ "types": "index.d.ts",
{ "version": "5.2.1"
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
} }
{ {
"name": "semver", "_from": "semver@^5.6.0",
"version": "5.7.1", "_id": "semver@5.7.1",
"description": "The semantic version parser used by npm.", "_inBundle": false,
"main": "semver.js", "_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
"scripts": { "_location": "/semver",
"test": "tap", "_phantomChildren": {},
"preversion": "npm test", "_requested": {
"postversion": "npm publish", "type": "range",
"postpublish": "git push origin --all; git push origin --tags" "registry": true,
"raw": "semver@^5.6.0",
"name": "semver",
"escapedName": "semver",
"rawSpec": "^5.6.0",
"saveSpec": null,
"fetchSpec": "^5.6.0"
}, },
"_requiredBy": [
"/jsonwebtoken"
],
"_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
"_shasum": "a954f931aeba508d307bbf069eff0c01c96116f7",
"_spec": "semver@^5.6.0",
"_where": "D:\\gitcode\\great-teamwork\\teamwork\\uni_modules\\uni-id-pages\\uniCloud\\cloudfunctions\\uni-id-co\\node_modules\\jsonwebtoken",
"bin": {
"semver": "bin/semver"
},
"bugs": {
"url": "https://github.com/npm/node-semver/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "The semantic version parser used by npm.",
"devDependencies": { "devDependencies": {
"tap": "^13.0.0-rc.18" "tap": "^13.0.0-rc.18"
}, },
"license": "ISC",
"repository": "https://github.com/npm/node-semver",
"bin": {
"semver": "./bin/semver"
},
"files": [ "files": [
"bin", "bin",
"range.bnf", "range.bnf",
"semver.js" "semver.js"
], ],
"homepage": "https://github.com/npm/node-semver#readme",
"license": "ISC",
"main": "semver.js",
"name": "semver",
"repository": {
"type": "git",
"url": "git+https://github.com/npm/node-semver.git"
},
"scripts": {
"postpublish": "git push origin --all; git push origin --tags",
"postversion": "npm publish",
"preversion": "npm test",
"test": "tap"
},
"tap": { "tap": {
"check-coverage": true "check-coverage": true
} },
"version": "5.7.1"
} }
{
"name": "uni-id-co",
"version": "1.0.38",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"buffer-equal-constant-time": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
"integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA=="
},
"ecdsa-sig-formatter": {
"version": "1.0.11",
"resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
"integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
"requires": {
"safe-buffer": "^5.0.1"
}
},
"jsonwebtoken": {
"version": "8.5.1",
"resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz",
"integrity": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==",
"requires": {
"jws": "^3.2.2",
"lodash.includes": "^4.3.0",
"lodash.isboolean": "^3.0.3",
"lodash.isinteger": "^4.0.4",
"lodash.isnumber": "^3.0.3",
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1",
"lodash.once": "^4.0.0",
"ms": "^2.1.1",
"semver": "^5.6.0"
}
},
"jwa": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz",
"integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==",
"requires": {
"buffer-equal-constant-time": "1.0.1",
"ecdsa-sig-formatter": "1.0.11",
"safe-buffer": "^5.0.1"
}
},
"jws": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz",
"integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==",
"requires": {
"jwa": "^1.4.1",
"safe-buffer": "^5.0.1"
}
},
"lodash.includes": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz",
"integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w=="
},
"lodash.isboolean": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz",
"integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg=="
},
"lodash.isinteger": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz",
"integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA=="
},
"lodash.isnumber": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz",
"integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw=="
},
"lodash.isplainobject": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
"integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA=="
},
"lodash.isstring": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz",
"integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw=="
},
"lodash.merge": {
"version": "4.6.2",
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="
},
"lodash.once": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
"integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg=="
},
"ms": {
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
},
"safe-buffer": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
},
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="
},
"uni-captcha": {
"version": "file:../../../../uni-captcha/uniCloud/cloudfunctions/common/uni-captcha",
"requires": {
"uni-config-center": "file:../../../../uni-config-center/uniCloud/cloudfunctions/common/uni-config-center"
},
"dependencies": {
"uni-config-center": {
"version": "file:../../../../uni-config-center/uniCloud/cloudfunctions/common/uni-config-center"
}
}
},
"uni-config-center": {
"version": "file:../../../../uni-config-center/uniCloud/cloudfunctions/common/uni-config-center"
},
"uni-id-common": {
"version": "file:../../../../uni-id-common/uniCloud/cloudfunctions/common/uni-id-common",
"requires": {
"uni-config-center": "file:../../../../uni-config-center/uniCloud/cloudfunctions/common/uni-config-center"
},
"dependencies": {
"uni-config-center": {
"version": "file:../../../../uni-config-center/uniCloud/cloudfunctions/common/uni-config-center"
}
}
},
"uni-open-bridge-common": {
"version": "file:../../../../uni-open-bridge-common/uniCloud/cloudfunctions/common/uni-open-bridge-common",
"requires": {
"uni-config-center": "file:../../../../uni-config-center/uniCloud/cloudfunctions/common/uni-config-center"
},
"dependencies": {
"uni-config-center": {
"version": "file:../../../../uni-config-center/uniCloud/cloudfunctions/common/uni-config-center"
}
}
}
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册