This commit is contained in:
dgflash
2022-04-29 15:44:40 +08:00
parent f6d51a500a
commit dd3ca63b28
123 changed files with 6684 additions and 3992 deletions

View File

@@ -227,7 +227,7 @@
"_priority": 1073741824,
"_fov": 45,
"_fovAxis": 0,
"_orthoHeight": 375,
"_orthoHeight": 474.1565217391304,
"_near": 1,
"_far": 2000,
"_color": {

View File

@@ -2,7 +2,7 @@
"ver": "4.0.23",
"importer": "typescript",
"imported": true,
"uuid": "1d55c533-73cb-4d7e-b80d-7705d23eb797",
"uuid": "1e3d7b9a-9e7e-4c46-8900-2f6c142e6f72",
"files": [],
"subMetas": {},
"userData": {}

View File

@@ -2,7 +2,7 @@
"ver": "4.0.23",
"importer": "typescript",
"imported": true,
"uuid": "be95aa3c-ff10-4709-aa56-24c4ad4b5dc5",
"uuid": "fdd6be75-ecd4-4494-b6a8-8840861bc221",
"files": [],
"subMetas": {},
"userData": {}

View File

@@ -2,7 +2,7 @@
"ver": "4.0.23",
"importer": "typescript",
"imported": true,
"uuid": "1ae08d04-4458-4f10-a645-4e0ed6b0e764",
"uuid": "71d7b81c-9b43-4424-987f-ab00d6154f0e",
"files": [],
"subMetas": {},
"userData": {}

View File

@@ -6,7 +6,10 @@ case `uname` in
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../crc-32/bin/crc32.njs" "$@"
"$basedir/node" "$basedir/../crc-32/bin/crc32.njs" "$@"
ret=$?
else
exec node "$basedir/../crc-32/bin/crc32.njs" "$@"
node "$basedir/../crc-32/bin/crc32.njs" "$@"
ret=$?
fi
exit $ret

View File

@@ -1,9 +1,4 @@
@ECHO off
GOTO start
:find_dp0
SET dp0=%~dp0
EXIT /b
:start
SETLOCAL
CALL :find_dp0
@@ -14,4 +9,9 @@ IF EXIST "%dp0%\node.exe" (
SET PATHEXT=%PATHEXT:;.JS;=;%
)
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\crc-32\bin\crc32.njs" %*
"%_prog%" "%dp0%\..\crc-32\bin\crc32.njs" %*
ENDLOCAL
EXIT /b %errorlevel%
:find_dp0
SET dp0=%~dp0
EXIT /b

View File

@@ -9,20 +9,10 @@ if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
}
$ret=0
if (Test-Path "$basedir/node$exe") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../crc-32/bin/crc32.njs" $args
} else {
& "$basedir/node$exe" "$basedir/../crc-32/bin/crc32.njs" $args
}
& "$basedir/node$exe" "$basedir/../crc-32/bin/crc32.njs" $args
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../crc-32/bin/crc32.njs" $args
} else {
& "node$exe" "$basedir/../crc-32/bin/crc32.njs" $args
}
& "node$exe" "$basedir/../crc-32/bin/crc32.njs" $args
$ret=$LASTEXITCODE
}
exit $ret

View File

@@ -6,7 +6,10 @@ case `uname` in
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../mkdirp/bin/cmd.js" "$@"
"$basedir/node" "$basedir/../mkdirp/bin/cmd.js" "$@"
ret=$?
else
exec node "$basedir/../mkdirp/bin/cmd.js" "$@"
node "$basedir/../mkdirp/bin/cmd.js" "$@"
ret=$?
fi
exit $ret

View File

@@ -1,9 +1,4 @@
@ECHO off
GOTO start
:find_dp0
SET dp0=%~dp0
EXIT /b
:start
SETLOCAL
CALL :find_dp0
@@ -14,4 +9,9 @@ IF EXIST "%dp0%\node.exe" (
SET PATHEXT=%PATHEXT:;.JS;=;%
)
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\mkdirp\bin\cmd.js" %*
"%_prog%" "%dp0%\..\mkdirp\bin\cmd.js" %*
ENDLOCAL
EXIT /b %errorlevel%
:find_dp0
SET dp0=%~dp0
EXIT /b

View File

@@ -9,20 +9,10 @@ if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
}
$ret=0
if (Test-Path "$basedir/node$exe") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../mkdirp/bin/cmd.js" $args
} else {
& "$basedir/node$exe" "$basedir/../mkdirp/bin/cmd.js" $args
}
& "$basedir/node$exe" "$basedir/../mkdirp/bin/cmd.js" $args
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../mkdirp/bin/cmd.js" $args
} else {
& "node$exe" "$basedir/../mkdirp/bin/cmd.js" $args
}
& "node$exe" "$basedir/../mkdirp/bin/cmd.js" $args
$ret=$LASTEXITCODE
}
exit $ret

View File

@@ -6,7 +6,10 @@ case `uname` in
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../rimraf/bin.js" "$@"
"$basedir/node" "$basedir/../rimraf/bin.js" "$@"
ret=$?
else
exec node "$basedir/../rimraf/bin.js" "$@"
node "$basedir/../rimraf/bin.js" "$@"
ret=$?
fi
exit $ret

View File

@@ -1,9 +1,4 @@
@ECHO off
GOTO start
:find_dp0
SET dp0=%~dp0
EXIT /b
:start
SETLOCAL
CALL :find_dp0
@@ -14,4 +9,9 @@ IF EXIST "%dp0%\node.exe" (
SET PATHEXT=%PATHEXT:;.JS;=;%
)
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\rimraf\bin.js" %*
"%_prog%" "%dp0%\..\rimraf\bin.js" %*
ENDLOCAL
EXIT /b %errorlevel%
:find_dp0
SET dp0=%~dp0
EXIT /b

View File

@@ -9,20 +9,10 @@ if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
}
$ret=0
if (Test-Path "$basedir/node$exe") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../rimraf/bin.js" $args
} else {
& "$basedir/node$exe" "$basedir/../rimraf/bin.js" $args
}
& "$basedir/node$exe" "$basedir/../rimraf/bin.js" $args
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../rimraf/bin.js" $args
} else {
& "node$exe" "$basedir/../rimraf/bin.js" $args
}
& "node$exe" "$basedir/../rimraf/bin.js" $args
$ret=$LASTEXITCODE
}
exit $ret

View File

@@ -6,7 +6,10 @@ case `uname` in
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../uuid/dist/bin/uuid" "$@"
"$basedir/node" "$basedir/../uuid/dist/bin/uuid" "$@"
ret=$?
else
exec node "$basedir/../uuid/dist/bin/uuid" "$@"
node "$basedir/../uuid/dist/bin/uuid" "$@"
ret=$?
fi
exit $ret

View File

@@ -1,9 +1,4 @@
@ECHO off
GOTO start
:find_dp0
SET dp0=%~dp0
EXIT /b
:start
SETLOCAL
CALL :find_dp0
@@ -14,4 +9,9 @@ IF EXIST "%dp0%\node.exe" (
SET PATHEXT=%PATHEXT:;.JS;=;%
)
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\uuid\dist\bin\uuid" %*
"%_prog%" "%dp0%\..\uuid\dist\bin\uuid" %*
ENDLOCAL
EXIT /b %errorlevel%
:find_dp0
SET dp0=%~dp0
EXIT /b

View File

@@ -9,20 +9,10 @@ if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
}
$ret=0
if (Test-Path "$basedir/node$exe") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../uuid/dist/bin/uuid" $args
} else {
& "$basedir/node$exe" "$basedir/../uuid/dist/bin/uuid" $args
}
& "$basedir/node$exe" "$basedir/../uuid/dist/bin/uuid" $args
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../uuid/dist/bin/uuid" $args
} else {
& "node$exe" "$basedir/../uuid/dist/bin/uuid" $args
}
& "node$exe" "$basedir/../uuid/dist/bin/uuid" $args
$ret=$LASTEXITCODE
}
exit $ret

View File

@@ -1,225 +1,217 @@
{
"_args": [
[
"@types/node@14.18.16",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "@types/node@14.18.16",
"_id": "@types/node@14.18.16",
"_inBundle": false,
"_integrity": "sha512-X3bUMdK/VmvrWdoTkz+VCn6nwKwrKCFTHtqwBIaQJNx4RUIBBUFXM00bqPz/DsDd+Icjmzm6/tyYZzeGVqb6/Q==",
"_location": "/@fast-csv/format/@types/node",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "@types/node@14.18.16",
"name": "@types/node",
"version": "14.18.16",
"description": "TypeScript definitions for Node.js",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
"license": "MIT",
"contributors": [
{
"name": "Microsoft TypeScript",
"url": "https://github.com/Microsoft",
"githubUsername": "Microsoft"
},
{
"name": "DefinitelyTyped",
"url": "https://github.com/DefinitelyTyped",
"githubUsername": "DefinitelyTyped"
},
{
"name": "Alberto Schiabel",
"url": "https://github.com/jkomyno",
"githubUsername": "jkomyno"
},
{
"name": "Alvis HT Tang",
"url": "https://github.com/alvis",
"githubUsername": "alvis"
},
{
"name": "Andrew Makarov",
"url": "https://github.com/r3nya",
"githubUsername": "r3nya"
},
{
"name": "Benjamin Toueg",
"url": "https://github.com/btoueg",
"githubUsername": "btoueg"
},
{
"name": "Chigozirim C.",
"url": "https://github.com/smac89",
"githubUsername": "smac89"
},
{
"name": "David Junger",
"url": "https://github.com/touffy",
"githubUsername": "touffy"
},
{
"name": "Deividas Bakanas",
"url": "https://github.com/DeividasBakanas",
"githubUsername": "DeividasBakanas"
},
{
"name": "Eugene Y. Q. Shen",
"url": "https://github.com/eyqs",
"githubUsername": "eyqs"
},
{
"name": "Hannes Magnusson",
"url": "https://github.com/Hannes-Magnusson-CK",
"githubUsername": "Hannes-Magnusson-CK"
},
{
"name": "Hoàng Văn Khải",
"url": "https://github.com/KSXGitHub",
"githubUsername": "KSXGitHub"
},
{
"name": "Huw",
"url": "https://github.com/hoo29",
"githubUsername": "hoo29"
},
{
"name": "Kelvin Jin",
"url": "https://github.com/kjin",
"githubUsername": "kjin"
},
{
"name": "Klaus Meinhardt",
"url": "https://github.com/ajafff",
"githubUsername": "ajafff"
},
{
"name": "Lishude",
"url": "https://github.com/islishude",
"githubUsername": "islishude"
},
{
"name": "Mariusz Wiktorczyk",
"url": "https://github.com/mwiktorczyk",
"githubUsername": "mwiktorczyk"
},
{
"name": "Mohsen Azimi",
"url": "https://github.com/mohsen1",
"githubUsername": "mohsen1"
},
{
"name": "Nicolas Even",
"url": "https://github.com/n-e",
"githubUsername": "n-e"
},
{
"name": "Nikita Galkin",
"url": "https://github.com/galkin",
"githubUsername": "galkin"
},
{
"name": "Parambir Singh",
"url": "https://github.com/parambirs",
"githubUsername": "parambirs"
},
{
"name": "Sebastian Silbermann",
"url": "https://github.com/eps1lon",
"githubUsername": "eps1lon"
},
{
"name": "Seth Westphal",
"url": "https://github.com/westy92",
"githubUsername": "westy92"
},
{
"name": "Simon Schick",
"url": "https://github.com/SimonSchick",
"githubUsername": "SimonSchick"
},
{
"name": "Thomas den Hollander",
"url": "https://github.com/ThomasdenH",
"githubUsername": "ThomasdenH"
},
{
"name": "Wilco Bakker",
"url": "https://github.com/WilcoBakker",
"githubUsername": "WilcoBakker"
},
{
"name": "wwwy3y3",
"url": "https://github.com/wwwy3y3",
"githubUsername": "wwwy3y3"
},
{
"name": "Samuel Ainsworth",
"url": "https://github.com/samuela",
"githubUsername": "samuela"
},
{
"name": "Kyle Uehlein",
"url": "https://github.com/kuehlein",
"githubUsername": "kuehlein"
},
{
"name": "Thanik Bhongbhibhat",
"url": "https://github.com/bhongy",
"githubUsername": "bhongy"
},
{
"name": "Marcin Kopacz",
"url": "https://github.com/chyzwar",
"githubUsername": "chyzwar"
},
{
"name": "Trivikram Kamat",
"url": "https://github.com/trivikr",
"githubUsername": "trivikr"
},
{
"name": "Junxiao Shi",
"url": "https://github.com/yoursunny",
"githubUsername": "yoursunny"
},
{
"name": "Ilia Baryshnikov",
"url": "https://github.com/qwelias",
"githubUsername": "qwelias"
},
{
"name": "ExE Boss",
"url": "https://github.com/ExE-Boss",
"githubUsername": "ExE-Boss"
},
{
"name": "Piotr Błażejewicz",
"url": "https://github.com/peterblazejewicz",
"githubUsername": "peterblazejewicz"
},
{
"name": "Anna Henningsen",
"url": "https://github.com/addaleax",
"githubUsername": "addaleax"
},
{
"name": "Victor Perin",
"url": "https://github.com/victorperin",
"githubUsername": "victorperin"
},
{
"name": "Yongsheng Zhang",
"url": "https://github.com/ZYSzys",
"githubUsername": "ZYSzys"
},
{
"name": "Bond",
"url": "https://github.com/bondz",
"githubUsername": "bondz"
},
{
"name": "Linus Unnebäck",
"url": "https://github.com/LinusU",
"githubUsername": "LinusU"
}
],
"main": "",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/node"
"escapedName": "@types%2fnode",
"scope": "@types",
"rawSpec": "14.18.16",
"saveSpec": null,
"fetchSpec": "14.18.16"
},
"_requiredBy": [
"/@fast-csv/format"
],
"_resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.16.tgz",
"_spec": "14.18.16",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"bugs": {
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
},
"contributors": [
{
"name": "Microsoft TypeScript",
"url": "https://github.com/Microsoft"
},
"scripts": {},
"dependencies": {},
"typesPublisherContentHash": "0d998b667f1dae5e2990109864381377f42577f9f1342ff84e533de5a4a145c6",
"typeScriptVersion": "3.9"
}
{
"name": "DefinitelyTyped",
"url": "https://github.com/DefinitelyTyped"
},
{
"name": "Alberto Schiabel",
"url": "https://github.com/jkomyno"
},
{
"name": "Alvis HT Tang",
"url": "https://github.com/alvis"
},
{
"name": "Andrew Makarov",
"url": "https://github.com/r3nya"
},
{
"name": "Benjamin Toueg",
"url": "https://github.com/btoueg"
},
{
"name": "Chigozirim C.",
"url": "https://github.com/smac89"
},
{
"name": "David Junger",
"url": "https://github.com/touffy"
},
{
"name": "Deividas Bakanas",
"url": "https://github.com/DeividasBakanas"
},
{
"name": "Eugene Y. Q. Shen",
"url": "https://github.com/eyqs"
},
{
"name": "Hannes Magnusson",
"url": "https://github.com/Hannes-Magnusson-CK"
},
{
"name": "Hoàng Văn Khải",
"url": "https://github.com/KSXGitHub"
},
{
"name": "Huw",
"url": "https://github.com/hoo29"
},
{
"name": "Kelvin Jin",
"url": "https://github.com/kjin"
},
{
"name": "Klaus Meinhardt",
"url": "https://github.com/ajafff"
},
{
"name": "Lishude",
"url": "https://github.com/islishude"
},
{
"name": "Mariusz Wiktorczyk",
"url": "https://github.com/mwiktorczyk"
},
{
"name": "Mohsen Azimi",
"url": "https://github.com/mohsen1"
},
{
"name": "Nicolas Even",
"url": "https://github.com/n-e"
},
{
"name": "Nikita Galkin",
"url": "https://github.com/galkin"
},
{
"name": "Parambir Singh",
"url": "https://github.com/parambirs"
},
{
"name": "Sebastian Silbermann",
"url": "https://github.com/eps1lon"
},
{
"name": "Seth Westphal",
"url": "https://github.com/westy92"
},
{
"name": "Simon Schick",
"url": "https://github.com/SimonSchick"
},
{
"name": "Thomas den Hollander",
"url": "https://github.com/ThomasdenH"
},
{
"name": "Wilco Bakker",
"url": "https://github.com/WilcoBakker"
},
{
"name": "wwwy3y3",
"url": "https://github.com/wwwy3y3"
},
{
"name": "Samuel Ainsworth",
"url": "https://github.com/samuela"
},
{
"name": "Kyle Uehlein",
"url": "https://github.com/kuehlein"
},
{
"name": "Thanik Bhongbhibhat",
"url": "https://github.com/bhongy"
},
{
"name": "Marcin Kopacz",
"url": "https://github.com/chyzwar"
},
{
"name": "Trivikram Kamat",
"url": "https://github.com/trivikr"
},
{
"name": "Junxiao Shi",
"url": "https://github.com/yoursunny"
},
{
"name": "Ilia Baryshnikov",
"url": "https://github.com/qwelias"
},
{
"name": "ExE Boss",
"url": "https://github.com/ExE-Boss"
},
{
"name": "Piotr Błażejewicz",
"url": "https://github.com/peterblazejewicz"
},
{
"name": "Anna Henningsen",
"url": "https://github.com/addaleax"
},
{
"name": "Victor Perin",
"url": "https://github.com/victorperin"
},
{
"name": "Yongsheng Zhang",
"url": "https://github.com/ZYSzys"
},
{
"name": "Bond",
"url": "https://github.com/bondz"
},
{
"name": "Linus Unnebäck",
"url": "https://github.com/LinusU"
}
],
"dependencies": {},
"description": "TypeScript definitions for Node.js",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
"license": "MIT",
"main": "",
"name": "@types/node",
"repository": {
"type": "git",
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/node"
},
"scripts": {},
"typeScriptVersion": "3.9",
"types": "index.d.ts",
"typesPublisherContentHash": "0d998b667f1dae5e2990109864381377f42577f9f1342ff84e533de5a4a145c6",
"version": "14.18.16"
}

View File

@@ -1,37 +1,37 @@
{
"name": "@fast-csv/format",
"version": "4.3.5",
"description": "fast-csv formatting module",
"keywords": [
"csv",
"format",
"write"
"_args": [
[
"@fast-csv/format@4.3.5",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"author": "doug-martin <doug@dougamartin.com>",
"homepage": "http://c2fo.github.com/fast-csv/packages/format",
"license": "MIT",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"directories": {
"lib": "src",
"test": "__tests__"
"_development": true,
"_from": "@fast-csv/format@4.3.5",
"_id": "@fast-csv/format@4.3.5",
"_inBundle": false,
"_integrity": "sha512-8iRn6QF3I8Ak78lNAa+Gdl5MJJBM5vRHivFtMRUWINdevNo00K7OXxS2PshawLKTejVwieIlPmK5YlLu6w4u8A==",
"_location": "/@fast-csv/format",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "@fast-csv/format@4.3.5",
"name": "@fast-csv/format",
"escapedName": "@fast-csv%2fformat",
"scope": "@fast-csv",
"rawSpec": "4.3.5",
"saveSpec": null,
"fetchSpec": "4.3.5"
},
"files": [
"build/src/**"
"_requiredBy": [
"/fast-csv"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/C2FO/fast-csv.git",
"directory": "packages/format"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./build && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc"
"_resolved": "https://registry.npmjs.org/@fast-csv/format/-/format-4.3.5.tgz",
"_spec": "4.3.5",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "doug-martin",
"email": "doug@dougamartin.com"
},
"bugs": {
"url": "https://github.com/C2FO/fast-csv/issues"
@@ -44,6 +44,7 @@
"lodash.isfunction": "^3.0.9",
"lodash.isnil": "^4.0.0"
},
"description": "fast-csv formatting module",
"devDependencies": {
"@types/lodash.escaperegexp": "4.1.6",
"@types/lodash.isboolean": "3.0.6",
@@ -51,5 +52,37 @@
"@types/lodash.isfunction": "3.0.6",
"@types/lodash.isnil": "4.0.6"
},
"gitHead": "b908170cb49398ae12847d050af5c8e5b0dc812f"
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"build/src/**"
],
"gitHead": "b908170cb49398ae12847d050af5c8e5b0dc812f",
"homepage": "http://c2fo.github.com/fast-csv/packages/format",
"keywords": [
"csv",
"format",
"write"
],
"license": "MIT",
"main": "build/src/index.js",
"name": "@fast-csv/format",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/C2FO/fast-csv.git",
"directory": "packages/format"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./build && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc",
"prepublishOnly": "npm run build"
},
"types": "build/src/index.d.ts",
"version": "4.3.5"
}

View File

@@ -1,225 +1,217 @@
{
"_args": [
[
"@types/node@14.18.16",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "@types/node@14.18.16",
"_id": "@types/node@14.18.16",
"_inBundle": false,
"_integrity": "sha512-X3bUMdK/VmvrWdoTkz+VCn6nwKwrKCFTHtqwBIaQJNx4RUIBBUFXM00bqPz/DsDd+Icjmzm6/tyYZzeGVqb6/Q==",
"_location": "/@fast-csv/parse/@types/node",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "@types/node@14.18.16",
"name": "@types/node",
"version": "14.18.16",
"description": "TypeScript definitions for Node.js",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
"license": "MIT",
"contributors": [
{
"name": "Microsoft TypeScript",
"url": "https://github.com/Microsoft",
"githubUsername": "Microsoft"
},
{
"name": "DefinitelyTyped",
"url": "https://github.com/DefinitelyTyped",
"githubUsername": "DefinitelyTyped"
},
{
"name": "Alberto Schiabel",
"url": "https://github.com/jkomyno",
"githubUsername": "jkomyno"
},
{
"name": "Alvis HT Tang",
"url": "https://github.com/alvis",
"githubUsername": "alvis"
},
{
"name": "Andrew Makarov",
"url": "https://github.com/r3nya",
"githubUsername": "r3nya"
},
{
"name": "Benjamin Toueg",
"url": "https://github.com/btoueg",
"githubUsername": "btoueg"
},
{
"name": "Chigozirim C.",
"url": "https://github.com/smac89",
"githubUsername": "smac89"
},
{
"name": "David Junger",
"url": "https://github.com/touffy",
"githubUsername": "touffy"
},
{
"name": "Deividas Bakanas",
"url": "https://github.com/DeividasBakanas",
"githubUsername": "DeividasBakanas"
},
{
"name": "Eugene Y. Q. Shen",
"url": "https://github.com/eyqs",
"githubUsername": "eyqs"
},
{
"name": "Hannes Magnusson",
"url": "https://github.com/Hannes-Magnusson-CK",
"githubUsername": "Hannes-Magnusson-CK"
},
{
"name": "Hoàng Văn Khải",
"url": "https://github.com/KSXGitHub",
"githubUsername": "KSXGitHub"
},
{
"name": "Huw",
"url": "https://github.com/hoo29",
"githubUsername": "hoo29"
},
{
"name": "Kelvin Jin",
"url": "https://github.com/kjin",
"githubUsername": "kjin"
},
{
"name": "Klaus Meinhardt",
"url": "https://github.com/ajafff",
"githubUsername": "ajafff"
},
{
"name": "Lishude",
"url": "https://github.com/islishude",
"githubUsername": "islishude"
},
{
"name": "Mariusz Wiktorczyk",
"url": "https://github.com/mwiktorczyk",
"githubUsername": "mwiktorczyk"
},
{
"name": "Mohsen Azimi",
"url": "https://github.com/mohsen1",
"githubUsername": "mohsen1"
},
{
"name": "Nicolas Even",
"url": "https://github.com/n-e",
"githubUsername": "n-e"
},
{
"name": "Nikita Galkin",
"url": "https://github.com/galkin",
"githubUsername": "galkin"
},
{
"name": "Parambir Singh",
"url": "https://github.com/parambirs",
"githubUsername": "parambirs"
},
{
"name": "Sebastian Silbermann",
"url": "https://github.com/eps1lon",
"githubUsername": "eps1lon"
},
{
"name": "Seth Westphal",
"url": "https://github.com/westy92",
"githubUsername": "westy92"
},
{
"name": "Simon Schick",
"url": "https://github.com/SimonSchick",
"githubUsername": "SimonSchick"
},
{
"name": "Thomas den Hollander",
"url": "https://github.com/ThomasdenH",
"githubUsername": "ThomasdenH"
},
{
"name": "Wilco Bakker",
"url": "https://github.com/WilcoBakker",
"githubUsername": "WilcoBakker"
},
{
"name": "wwwy3y3",
"url": "https://github.com/wwwy3y3",
"githubUsername": "wwwy3y3"
},
{
"name": "Samuel Ainsworth",
"url": "https://github.com/samuela",
"githubUsername": "samuela"
},
{
"name": "Kyle Uehlein",
"url": "https://github.com/kuehlein",
"githubUsername": "kuehlein"
},
{
"name": "Thanik Bhongbhibhat",
"url": "https://github.com/bhongy",
"githubUsername": "bhongy"
},
{
"name": "Marcin Kopacz",
"url": "https://github.com/chyzwar",
"githubUsername": "chyzwar"
},
{
"name": "Trivikram Kamat",
"url": "https://github.com/trivikr",
"githubUsername": "trivikr"
},
{
"name": "Junxiao Shi",
"url": "https://github.com/yoursunny",
"githubUsername": "yoursunny"
},
{
"name": "Ilia Baryshnikov",
"url": "https://github.com/qwelias",
"githubUsername": "qwelias"
},
{
"name": "ExE Boss",
"url": "https://github.com/ExE-Boss",
"githubUsername": "ExE-Boss"
},
{
"name": "Piotr Błażejewicz",
"url": "https://github.com/peterblazejewicz",
"githubUsername": "peterblazejewicz"
},
{
"name": "Anna Henningsen",
"url": "https://github.com/addaleax",
"githubUsername": "addaleax"
},
{
"name": "Victor Perin",
"url": "https://github.com/victorperin",
"githubUsername": "victorperin"
},
{
"name": "Yongsheng Zhang",
"url": "https://github.com/ZYSzys",
"githubUsername": "ZYSzys"
},
{
"name": "Bond",
"url": "https://github.com/bondz",
"githubUsername": "bondz"
},
{
"name": "Linus Unnebäck",
"url": "https://github.com/LinusU",
"githubUsername": "LinusU"
}
],
"main": "",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/node"
"escapedName": "@types%2fnode",
"scope": "@types",
"rawSpec": "14.18.16",
"saveSpec": null,
"fetchSpec": "14.18.16"
},
"_requiredBy": [
"/@fast-csv/parse"
],
"_resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.16.tgz",
"_spec": "14.18.16",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"bugs": {
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
},
"contributors": [
{
"name": "Microsoft TypeScript",
"url": "https://github.com/Microsoft"
},
"scripts": {},
"dependencies": {},
"typesPublisherContentHash": "0d998b667f1dae5e2990109864381377f42577f9f1342ff84e533de5a4a145c6",
"typeScriptVersion": "3.9"
}
{
"name": "DefinitelyTyped",
"url": "https://github.com/DefinitelyTyped"
},
{
"name": "Alberto Schiabel",
"url": "https://github.com/jkomyno"
},
{
"name": "Alvis HT Tang",
"url": "https://github.com/alvis"
},
{
"name": "Andrew Makarov",
"url": "https://github.com/r3nya"
},
{
"name": "Benjamin Toueg",
"url": "https://github.com/btoueg"
},
{
"name": "Chigozirim C.",
"url": "https://github.com/smac89"
},
{
"name": "David Junger",
"url": "https://github.com/touffy"
},
{
"name": "Deividas Bakanas",
"url": "https://github.com/DeividasBakanas"
},
{
"name": "Eugene Y. Q. Shen",
"url": "https://github.com/eyqs"
},
{
"name": "Hannes Magnusson",
"url": "https://github.com/Hannes-Magnusson-CK"
},
{
"name": "Hoàng Văn Khải",
"url": "https://github.com/KSXGitHub"
},
{
"name": "Huw",
"url": "https://github.com/hoo29"
},
{
"name": "Kelvin Jin",
"url": "https://github.com/kjin"
},
{
"name": "Klaus Meinhardt",
"url": "https://github.com/ajafff"
},
{
"name": "Lishude",
"url": "https://github.com/islishude"
},
{
"name": "Mariusz Wiktorczyk",
"url": "https://github.com/mwiktorczyk"
},
{
"name": "Mohsen Azimi",
"url": "https://github.com/mohsen1"
},
{
"name": "Nicolas Even",
"url": "https://github.com/n-e"
},
{
"name": "Nikita Galkin",
"url": "https://github.com/galkin"
},
{
"name": "Parambir Singh",
"url": "https://github.com/parambirs"
},
{
"name": "Sebastian Silbermann",
"url": "https://github.com/eps1lon"
},
{
"name": "Seth Westphal",
"url": "https://github.com/westy92"
},
{
"name": "Simon Schick",
"url": "https://github.com/SimonSchick"
},
{
"name": "Thomas den Hollander",
"url": "https://github.com/ThomasdenH"
},
{
"name": "Wilco Bakker",
"url": "https://github.com/WilcoBakker"
},
{
"name": "wwwy3y3",
"url": "https://github.com/wwwy3y3"
},
{
"name": "Samuel Ainsworth",
"url": "https://github.com/samuela"
},
{
"name": "Kyle Uehlein",
"url": "https://github.com/kuehlein"
},
{
"name": "Thanik Bhongbhibhat",
"url": "https://github.com/bhongy"
},
{
"name": "Marcin Kopacz",
"url": "https://github.com/chyzwar"
},
{
"name": "Trivikram Kamat",
"url": "https://github.com/trivikr"
},
{
"name": "Junxiao Shi",
"url": "https://github.com/yoursunny"
},
{
"name": "Ilia Baryshnikov",
"url": "https://github.com/qwelias"
},
{
"name": "ExE Boss",
"url": "https://github.com/ExE-Boss"
},
{
"name": "Piotr Błażejewicz",
"url": "https://github.com/peterblazejewicz"
},
{
"name": "Anna Henningsen",
"url": "https://github.com/addaleax"
},
{
"name": "Victor Perin",
"url": "https://github.com/victorperin"
},
{
"name": "Yongsheng Zhang",
"url": "https://github.com/ZYSzys"
},
{
"name": "Bond",
"url": "https://github.com/bondz"
},
{
"name": "Linus Unnebäck",
"url": "https://github.com/LinusU"
}
],
"dependencies": {},
"description": "TypeScript definitions for Node.js",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
"license": "MIT",
"main": "",
"name": "@types/node",
"repository": {
"type": "git",
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/node"
},
"scripts": {},
"typeScriptVersion": "3.9",
"types": "index.d.ts",
"typesPublisherContentHash": "0d998b667f1dae5e2990109864381377f42577f9f1342ff84e533de5a4a145c6",
"version": "14.18.16"
}

View File

@@ -1,38 +1,37 @@
{
"name": "@fast-csv/parse",
"version": "4.3.6",
"description": "fast-csv parsing package",
"keywords": [
"csv",
"parse",
"fast-csv",
"parser"
"_args": [
[
"@fast-csv/parse@4.3.6",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"author": "doug-martin <doug@dougamartin.com>",
"homepage": "http://c2fo.github.com/fast-csv/packages/parse",
"license": "MIT",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"directories": {
"lib": "src",
"test": "__tests__"
"_development": true,
"_from": "@fast-csv/parse@4.3.6",
"_id": "@fast-csv/parse@4.3.6",
"_inBundle": false,
"_integrity": "sha512-uRsLYksqpbDmWaSmzvJcuApSEe38+6NQZBUsuAyMZKqHxH0g1wcJgsKUvN3WC8tewaqFjBMMGrkHmC+T7k8LvA==",
"_location": "/@fast-csv/parse",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "@fast-csv/parse@4.3.6",
"name": "@fast-csv/parse",
"escapedName": "@fast-csv%2fparse",
"scope": "@fast-csv",
"rawSpec": "4.3.6",
"saveSpec": null,
"fetchSpec": "4.3.6"
},
"files": [
"build/src/**"
"_requiredBy": [
"/fast-csv"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/C2FO/fast-csv.git",
"directory": "packages/parse"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./build && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc"
"_resolved": "https://registry.npmjs.org/@fast-csv/parse/-/parse-4.3.6.tgz",
"_spec": "4.3.6",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "doug-martin",
"email": "doug@dougamartin.com"
},
"bugs": {
"url": "https://github.com/C2FO/fast-csv/issues"
@@ -46,6 +45,7 @@
"lodash.isundefined": "^3.0.1",
"lodash.uniq": "^4.5.0"
},
"description": "fast-csv parsing package",
"devDependencies": {
"@types/lodash.escaperegexp": "4.1.6",
"@types/lodash.groupby": "4.6.6",
@@ -58,5 +58,38 @@
"lodash.partition": "4.6.0",
"sinon": "9.2.1"
},
"gitHead": "3dc859edb19924b315051e4c87d6273808a0de73"
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"build/src/**"
],
"gitHead": "3dc859edb19924b315051e4c87d6273808a0de73",
"homepage": "http://c2fo.github.com/fast-csv/packages/parse",
"keywords": [
"csv",
"parse",
"fast-csv",
"parser"
],
"license": "MIT",
"main": "build/src/index.js",
"name": "@fast-csv/parse",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/C2FO/fast-csv.git",
"directory": "packages/parse"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./build && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc",
"prepublishOnly": "npm run build"
},
"types": "build/src/index.d.ts",
"version": "4.3.6"
}

View File

@@ -1,67 +1,91 @@
{
"_args": [
[
"@types/fs-extra@9.0.13",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "@types/fs-extra@9.0.13",
"_id": "@types/fs-extra@9.0.13",
"_inBundle": false,
"_integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==",
"_location": "/@types/fs-extra",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "@types/fs-extra@9.0.13",
"name": "@types/fs-extra",
"version": "9.0.13",
"description": "TypeScript definitions for fs-extra",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/fs-extra",
"license": "MIT",
"contributors": [
{
"name": "Alan Agius",
"url": "https://github.com/alan-agius4",
"githubUsername": "alan-agius4"
},
{
"name": "midknight41",
"url": "https://github.com/midknight41",
"githubUsername": "midknight41"
},
{
"name": "Brendan Forster",
"url": "https://github.com/shiftkey",
"githubUsername": "shiftkey"
},
{
"name": "Mees van Dijk",
"url": "https://github.com/mees-",
"githubUsername": "mees-"
},
{
"name": "Justin Rockwood",
"url": "https://github.com/jrockwood",
"githubUsername": "jrockwood"
},
{
"name": "Sang Dang",
"url": "https://github.com/sangdth",
"githubUsername": "sangdth"
},
{
"name": "Florian Keller",
"url": "https://github.com/ffflorian",
"githubUsername": "ffflorian"
},
{
"name": "Piotr Błażejewicz",
"url": "https://github.com/peterblazejewicz",
"githubUsername": "peterblazejewicz"
},
{
"name": "Tiger Oakes",
"url": "https://github.com/NotWoods",
"githubUsername": "NotWoods"
}
],
"main": "",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/fs-extra"
"escapedName": "@types%2ffs-extra",
"scope": "@types",
"rawSpec": "9.0.13",
"saveSpec": null,
"fetchSpec": "9.0.13"
},
"_requiredBy": [
"#DEV:/"
],
"_resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz",
"_spec": "9.0.13",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"bugs": {
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
},
"contributors": [
{
"name": "Alan Agius",
"url": "https://github.com/alan-agius4"
},
"scripts": {},
"dependencies": {
"@types/node": "*"
{
"name": "midknight41",
"url": "https://github.com/midknight41"
},
"typesPublisherContentHash": "75e10d16a18d936a50e54414024604aa9484e8345b37c2027921869f254523ee",
"typeScriptVersion": "3.9"
}
{
"name": "Brendan Forster",
"url": "https://github.com/shiftkey"
},
{
"name": "Mees van Dijk",
"url": "https://github.com/mees-"
},
{
"name": "Justin Rockwood",
"url": "https://github.com/jrockwood"
},
{
"name": "Sang Dang",
"url": "https://github.com/sangdth"
},
{
"name": "Florian Keller",
"url": "https://github.com/ffflorian"
},
{
"name": "Piotr Błażejewicz",
"url": "https://github.com/peterblazejewicz"
},
{
"name": "Tiger Oakes",
"url": "https://github.com/NotWoods"
}
],
"dependencies": {
"@types/node": "*"
},
"description": "TypeScript definitions for fs-extra",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/fs-extra",
"license": "MIT",
"main": "",
"name": "@types/fs-extra",
"repository": {
"type": "git",
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/fs-extra"
},
"scripts": {},
"typeScriptVersion": "3.9",
"types": "index.d.ts",
"typesPublisherContentHash": "75e10d16a18d936a50e54414024604aa9484e8345b37c2027921869f254523ee",
"version": "9.0.13"
}

View File

@@ -1,225 +1,218 @@
{
"_args": [
[
"@types/node@16.11.32",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "@types/node@16.11.32",
"_id": "@types/node@16.11.32",
"_inBundle": false,
"_integrity": "sha512-+fnfNvG5JQdC1uGZiTx+0QVtoOHcggy6+epx65JYroPGsE1uhp+vo5kioiGKsAkor6ocwHteU2EvO7N8vtOZtA==",
"_location": "/@types/node",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "@types/node@16.11.32",
"name": "@types/node",
"version": "16.11.32",
"description": "TypeScript definitions for Node.js",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
"license": "MIT",
"contributors": [
{
"name": "Microsoft TypeScript",
"url": "https://github.com/Microsoft",
"githubUsername": "Microsoft"
},
{
"name": "DefinitelyTyped",
"url": "https://github.com/DefinitelyTyped",
"githubUsername": "DefinitelyTyped"
},
{
"name": "Alberto Schiabel",
"url": "https://github.com/jkomyno",
"githubUsername": "jkomyno"
},
{
"name": "Alvis HT Tang",
"url": "https://github.com/alvis",
"githubUsername": "alvis"
},
{
"name": "Andrew Makarov",
"url": "https://github.com/r3nya",
"githubUsername": "r3nya"
},
{
"name": "Benjamin Toueg",
"url": "https://github.com/btoueg",
"githubUsername": "btoueg"
},
{
"name": "Chigozirim C.",
"url": "https://github.com/smac89",
"githubUsername": "smac89"
},
{
"name": "David Junger",
"url": "https://github.com/touffy",
"githubUsername": "touffy"
},
{
"name": "Deividas Bakanas",
"url": "https://github.com/DeividasBakanas",
"githubUsername": "DeividasBakanas"
},
{
"name": "Eugene Y. Q. Shen",
"url": "https://github.com/eyqs",
"githubUsername": "eyqs"
},
{
"name": "Hannes Magnusson",
"url": "https://github.com/Hannes-Magnusson-CK",
"githubUsername": "Hannes-Magnusson-CK"
},
{
"name": "Huw",
"url": "https://github.com/hoo29",
"githubUsername": "hoo29"
},
{
"name": "Kelvin Jin",
"url": "https://github.com/kjin",
"githubUsername": "kjin"
},
{
"name": "Klaus Meinhardt",
"url": "https://github.com/ajafff",
"githubUsername": "ajafff"
},
{
"name": "Lishude",
"url": "https://github.com/islishude",
"githubUsername": "islishude"
},
{
"name": "Mariusz Wiktorczyk",
"url": "https://github.com/mwiktorczyk",
"githubUsername": "mwiktorczyk"
},
{
"name": "Mohsen Azimi",
"url": "https://github.com/mohsen1",
"githubUsername": "mohsen1"
},
{
"name": "Nicolas Even",
"url": "https://github.com/n-e",
"githubUsername": "n-e"
},
{
"name": "Nikita Galkin",
"url": "https://github.com/galkin",
"githubUsername": "galkin"
},
{
"name": "Parambir Singh",
"url": "https://github.com/parambirs",
"githubUsername": "parambirs"
},
{
"name": "Sebastian Silbermann",
"url": "https://github.com/eps1lon",
"githubUsername": "eps1lon"
},
{
"name": "Seth Westphal",
"url": "https://github.com/westy92",
"githubUsername": "westy92"
},
{
"name": "Simon Schick",
"url": "https://github.com/SimonSchick",
"githubUsername": "SimonSchick"
},
{
"name": "Thomas den Hollander",
"url": "https://github.com/ThomasdenH",
"githubUsername": "ThomasdenH"
},
{
"name": "Wilco Bakker",
"url": "https://github.com/WilcoBakker",
"githubUsername": "WilcoBakker"
},
{
"name": "wwwy3y3",
"url": "https://github.com/wwwy3y3",
"githubUsername": "wwwy3y3"
},
{
"name": "Samuel Ainsworth",
"url": "https://github.com/samuela",
"githubUsername": "samuela"
},
{
"name": "Kyle Uehlein",
"url": "https://github.com/kuehlein",
"githubUsername": "kuehlein"
},
{
"name": "Thanik Bhongbhibhat",
"url": "https://github.com/bhongy",
"githubUsername": "bhongy"
},
{
"name": "Marcin Kopacz",
"url": "https://github.com/chyzwar",
"githubUsername": "chyzwar"
},
{
"name": "Trivikram Kamat",
"url": "https://github.com/trivikr",
"githubUsername": "trivikr"
},
{
"name": "Junxiao Shi",
"url": "https://github.com/yoursunny",
"githubUsername": "yoursunny"
},
{
"name": "Ilia Baryshnikov",
"url": "https://github.com/qwelias",
"githubUsername": "qwelias"
},
{
"name": "ExE Boss",
"url": "https://github.com/ExE-Boss",
"githubUsername": "ExE-Boss"
},
{
"name": "Piotr Błażejewicz",
"url": "https://github.com/peterblazejewicz",
"githubUsername": "peterblazejewicz"
},
{
"name": "Anna Henningsen",
"url": "https://github.com/addaleax",
"githubUsername": "addaleax"
},
{
"name": "Victor Perin",
"url": "https://github.com/victorperin",
"githubUsername": "victorperin"
},
{
"name": "Yongsheng Zhang",
"url": "https://github.com/ZYSzys",
"githubUsername": "ZYSzys"
},
{
"name": "NodeJS Contributors",
"url": "https://github.com/NodeJS",
"githubUsername": "NodeJS"
},
{
"name": "Linus Unnebäck",
"url": "https://github.com/LinusU",
"githubUsername": "LinusU"
},
{
"name": "wafuwafu13",
"url": "https://github.com/wafuwafu13",
"githubUsername": "wafuwafu13"
}
],
"main": "",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/node"
"escapedName": "@types%2fnode",
"scope": "@types",
"rawSpec": "16.11.32",
"saveSpec": null,
"fetchSpec": "16.11.32"
},
"_requiredBy": [
"#DEV:/",
"/@types/fs-extra"
],
"_resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.32.tgz",
"_spec": "16.11.32",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"bugs": {
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
},
"contributors": [
{
"name": "Microsoft TypeScript",
"url": "https://github.com/Microsoft"
},
"scripts": {},
"dependencies": {},
"typesPublisherContentHash": "39a20e17723ceab28ada36bf929e716bfbdebb92ad2bf493a3e4d10669f94ef8",
"typeScriptVersion": "3.9"
}
{
"name": "DefinitelyTyped",
"url": "https://github.com/DefinitelyTyped"
},
{
"name": "Alberto Schiabel",
"url": "https://github.com/jkomyno"
},
{
"name": "Alvis HT Tang",
"url": "https://github.com/alvis"
},
{
"name": "Andrew Makarov",
"url": "https://github.com/r3nya"
},
{
"name": "Benjamin Toueg",
"url": "https://github.com/btoueg"
},
{
"name": "Chigozirim C.",
"url": "https://github.com/smac89"
},
{
"name": "David Junger",
"url": "https://github.com/touffy"
},
{
"name": "Deividas Bakanas",
"url": "https://github.com/DeividasBakanas"
},
{
"name": "Eugene Y. Q. Shen",
"url": "https://github.com/eyqs"
},
{
"name": "Hannes Magnusson",
"url": "https://github.com/Hannes-Magnusson-CK"
},
{
"name": "Huw",
"url": "https://github.com/hoo29"
},
{
"name": "Kelvin Jin",
"url": "https://github.com/kjin"
},
{
"name": "Klaus Meinhardt",
"url": "https://github.com/ajafff"
},
{
"name": "Lishude",
"url": "https://github.com/islishude"
},
{
"name": "Mariusz Wiktorczyk",
"url": "https://github.com/mwiktorczyk"
},
{
"name": "Mohsen Azimi",
"url": "https://github.com/mohsen1"
},
{
"name": "Nicolas Even",
"url": "https://github.com/n-e"
},
{
"name": "Nikita Galkin",
"url": "https://github.com/galkin"
},
{
"name": "Parambir Singh",
"url": "https://github.com/parambirs"
},
{
"name": "Sebastian Silbermann",
"url": "https://github.com/eps1lon"
},
{
"name": "Seth Westphal",
"url": "https://github.com/westy92"
},
{
"name": "Simon Schick",
"url": "https://github.com/SimonSchick"
},
{
"name": "Thomas den Hollander",
"url": "https://github.com/ThomasdenH"
},
{
"name": "Wilco Bakker",
"url": "https://github.com/WilcoBakker"
},
{
"name": "wwwy3y3",
"url": "https://github.com/wwwy3y3"
},
{
"name": "Samuel Ainsworth",
"url": "https://github.com/samuela"
},
{
"name": "Kyle Uehlein",
"url": "https://github.com/kuehlein"
},
{
"name": "Thanik Bhongbhibhat",
"url": "https://github.com/bhongy"
},
{
"name": "Marcin Kopacz",
"url": "https://github.com/chyzwar"
},
{
"name": "Trivikram Kamat",
"url": "https://github.com/trivikr"
},
{
"name": "Junxiao Shi",
"url": "https://github.com/yoursunny"
},
{
"name": "Ilia Baryshnikov",
"url": "https://github.com/qwelias"
},
{
"name": "ExE Boss",
"url": "https://github.com/ExE-Boss"
},
{
"name": "Piotr Błażejewicz",
"url": "https://github.com/peterblazejewicz"
},
{
"name": "Anna Henningsen",
"url": "https://github.com/addaleax"
},
{
"name": "Victor Perin",
"url": "https://github.com/victorperin"
},
{
"name": "Yongsheng Zhang",
"url": "https://github.com/ZYSzys"
},
{
"name": "NodeJS Contributors",
"url": "https://github.com/NodeJS"
},
{
"name": "Linus Unnebäck",
"url": "https://github.com/LinusU"
},
{
"name": "wafuwafu13",
"url": "https://github.com/wafuwafu13"
}
],
"dependencies": {},
"description": "TypeScript definitions for Node.js",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
"license": "MIT",
"main": "",
"name": "@types/node",
"repository": {
"type": "git",
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/node"
},
"scripts": {},
"typeScriptVersion": "3.9",
"types": "index.d.ts",
"typesPublisherContentHash": "39a20e17723ceab28ada36bf929e716bfbdebb92ad2bf493a3e4d10669f94ef8",
"version": "16.11.32"
}

View File

@@ -1,8 +1,43 @@
{
"name": "readable-stream",
"version": "2.3.7",
"description": "Streams3, a user-land copy of the stream library from Node.js",
"main": "readable.js",
"_args": [
[
"readable-stream@2.3.7",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "readable-stream@2.3.7",
"_id": "readable-stream@2.3.7",
"_inBundle": false,
"_integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
"_location": "/archiver-utils/readable-stream",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "readable-stream@2.3.7",
"name": "readable-stream",
"escapedName": "readable-stream",
"rawSpec": "2.3.7",
"saveSpec": null,
"fetchSpec": "2.3.7"
},
"_requiredBy": [
"/archiver-utils"
],
"_resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
"_spec": "2.3.7",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"browser": {
"util": false,
"./readable.js": "./readable-browser.js",
"./writable.js": "./writable-browser.js",
"./duplex.js": "./duplex-browser.js",
"./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js"
},
"bugs": {
"url": "https://github.com/nodejs/readable-stream/issues"
},
"dependencies": {
"core-util-is": "~1.0.0",
"inherits": "~2.0.3",
@@ -12,6 +47,7 @@
"string_decoder": "~1.1.1",
"util-deprecate": "~1.0.1"
},
"description": "Streams3, a user-land copy of the stream library from Node.js",
"devDependencies": {
"assert": "^1.4.0",
"babel-polyfill": "^6.9.1",
@@ -21,32 +57,29 @@
"tap": "^0.7.0",
"tape": "^4.8.0"
},
"scripts": {
"test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js",
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js",
"cover": "nyc npm test",
"report": "nyc report --reporter=lcov"
},
"repository": {
"type": "git",
"url": "git://github.com/nodejs/readable-stream"
},
"homepage": "https://github.com/nodejs/readable-stream#readme",
"keywords": [
"readable",
"stream",
"pipe"
],
"browser": {
"util": false,
"./readable.js": "./readable-browser.js",
"./writable.js": "./writable-browser.js",
"./duplex.js": "./duplex-browser.js",
"./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js"
},
"license": "MIT",
"main": "readable.js",
"name": "readable-stream",
"nyc": {
"include": [
"lib/**.js"
]
},
"license": "MIT"
"repository": {
"type": "git",
"url": "git://github.com/nodejs/readable-stream.git"
},
"scripts": {
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js",
"cover": "nyc npm test",
"report": "nyc report --reporter=lcov",
"test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js"
},
"version": "2.3.7"
}

View File

@@ -1,7 +1,34 @@
{
"name": "safe-buffer",
"description": "Safer Node.js Buffer API",
"version": "5.1.2",
"_args": [
[
"safe-buffer@5.1.2",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "safe-buffer@5.1.2",
"_id": "safe-buffer@5.1.2",
"_inBundle": false,
"_integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
"_location": "/archiver-utils/safe-buffer",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "safe-buffer@5.1.2",
"name": "safe-buffer",
"escapedName": "safe-buffer",
"rawSpec": "5.1.2",
"saveSpec": null,
"fetchSpec": "5.1.2"
},
"_requiredBy": [
"/archiver-utils/readable-stream",
"/archiver-utils/string_decoder"
],
"_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
"_spec": "5.1.2",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
@@ -10,6 +37,7 @@
"bugs": {
"url": "https://github.com/feross/safe-buffer/issues"
},
"description": "Safer Node.js Buffer API",
"devDependencies": {
"standard": "*",
"tape": "^4.0.0"
@@ -26,12 +54,14 @@
],
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"name": "safe-buffer",
"repository": {
"type": "git",
"url": "git://github.com/feross/safe-buffer.git"
},
"scripts": {
"test": "standard && tape test/*.js"
}
},
"types": "index.d.ts",
"version": "5.1.2"
}

View File

@@ -1,25 +1,46 @@
{
"name": "string_decoder",
"version": "1.1.1",
"description": "The string_decoder module from Node core",
"main": "lib/string_decoder.js",
"_args": [
[
"string_decoder@1.1.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "string_decoder@1.1.1",
"_id": "string_decoder@1.1.1",
"_inBundle": false,
"_integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
"_location": "/archiver-utils/string_decoder",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "string_decoder@1.1.1",
"name": "string_decoder",
"escapedName": "string_decoder",
"rawSpec": "1.1.1",
"saveSpec": null,
"fetchSpec": "1.1.1"
},
"_requiredBy": [
"/archiver-utils/readable-stream"
],
"_resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
"_spec": "1.1.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"bugs": {
"url": "https://github.com/nodejs/string_decoder/issues"
},
"dependencies": {
"safe-buffer": "~5.1.0"
},
"description": "The string_decoder module from Node core",
"devDependencies": {
"babel-polyfill": "^6.23.0",
"core-util-is": "^1.0.2",
"inherits": "^2.0.3",
"tap": "~0.4.8"
},
"scripts": {
"test": "tap test/parallel/*.js && node test/verify-dependencies",
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js"
},
"repository": {
"type": "git",
"url": "git://github.com/nodejs/string_decoder.git"
},
"homepage": "https://github.com/nodejs/string_decoder",
"keywords": [
"string",
@@ -27,5 +48,16 @@
"browser",
"browserify"
],
"license": "MIT"
"license": "MIT",
"main": "lib/string_decoder.js",
"name": "string_decoder",
"repository": {
"type": "git",
"url": "git://github.com/nodejs/string_decoder.git"
},
"scripts": {
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js",
"test": "tap test/parallel/*.js && node test/verify-dependencies"
},
"version": "1.1.1"
}

View File

@@ -1,35 +1,47 @@
{
"name": "archiver-utils",
"version": "2.1.0",
"license": "MIT",
"description": "utility functions for archiver",
"homepage": "https://github.com/archiverjs/archiver-utils#readme",
"_args": [
[
"archiver-utils@2.1.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "archiver-utils@2.1.0",
"_id": "archiver-utils@2.1.0",
"_inBundle": false,
"_integrity": "sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==",
"_location": "/archiver-utils",
"_phantomChildren": {
"core-util-is": "1.0.3",
"inherits": "2.0.4",
"isarray": "1.0.0",
"process-nextick-args": "2.0.1",
"util-deprecate": "1.0.2"
},
"_requested": {
"type": "version",
"registry": true,
"raw": "archiver-utils@2.1.0",
"name": "archiver-utils",
"escapedName": "archiver-utils",
"rawSpec": "2.1.0",
"saveSpec": null,
"fetchSpec": "2.1.0"
},
"_requiredBy": [
"/archiver",
"/zip-stream"
],
"_resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-2.1.0.tgz",
"_spec": "2.1.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Chris Talkington",
"url": "http://christalkington.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/archiverjs/archiver-utils.git"
},
"bugs": {
"url": "https://github.com/archiverjs/archiver-utils/issues"
},
"keywords": [
"archiver",
"utils"
],
"main": "index.js",
"files": [
"index.js",
"file.js"
],
"engines": {
"node": ">= 6"
},
"scripts": {
"test": "mocha --reporter dot"
},
"dependencies": {
"glob": "^7.1.4",
"graceful-fs": "^4.2.0",
@@ -42,13 +54,37 @@
"normalize-path": "^3.0.0",
"readable-stream": "^2.0.0"
},
"description": "utility functions for archiver",
"devDependencies": {
"chai": "^4.2.0",
"mkdirp": "^0.5.0",
"mocha": "^5.0.0",
"rimraf": "^2.6.3"
},
"engines": {
"node": ">= 6"
},
"files": [
"index.js",
"file.js"
],
"homepage": "https://github.com/archiverjs/archiver-utils#readme",
"keywords": [
"archiver",
"utils"
],
"license": "MIT",
"main": "index.js",
"name": "archiver-utils",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/archiverjs/archiver-utils.git"
},
"scripts": {
"test": "mocha --reporter dot"
},
"version": "2.1.0"
}

View File

@@ -1,32 +1,40 @@
{
"name": "archiver",
"version": "5.3.1",
"description": "a streaming interface for archive generation",
"homepage": "https://github.com/archiverjs/node-archiver",
"_args": [
[
"archiver@5.3.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "archiver@5.3.1",
"_id": "archiver@5.3.1",
"_inBundle": false,
"_integrity": "sha512-8KyabkmbYrH+9ibcTScQ1xCJC/CGcugdVIwB+53f5sZziXgwUh3iXlAlANMxcZyDEfTHMe6+Z5FofV8nopXP7w==",
"_location": "/archiver",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "archiver@5.3.1",
"name": "archiver",
"escapedName": "archiver",
"rawSpec": "5.3.1",
"saveSpec": null,
"fetchSpec": "5.3.1"
},
"_requiredBy": [
"/exceljs"
],
"_resolved": "https://registry.npmjs.org/archiver/-/archiver-5.3.1.tgz",
"_spec": "5.3.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Chris Talkington",
"url": "http://christalkington.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/archiverjs/node-archiver.git"
},
"bugs": {
"url": "https://github.com/archiverjs/node-archiver/issues"
},
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"engines": {
"node": ">= 10"
},
"scripts": {
"test": "mocha --reporter dot",
"bench": "node benchmark/simple/pack-zip.js"
},
"dependencies": {
"archiver-utils": "^2.1.0",
"async": "^3.2.3",
@@ -36,6 +44,7 @@
"tar-stream": "^2.2.0",
"zip-stream": "^4.1.0"
},
"description": "a streaming interface for archive generation",
"devDependencies": {
"archiver-jsdoc-theme": "^1.1.3",
"chai": "^4.2.0",
@@ -47,6 +56,14 @@
"tar": "^6.1.11",
"yauzl": "^2.9.0"
},
"engines": {
"node": ">= 10"
},
"files": [
"index.js",
"lib"
],
"homepage": "https://github.com/archiverjs/node-archiver",
"keywords": [
"archive",
"archiver",
@@ -54,7 +71,19 @@
"zip",
"tar"
],
"license": "MIT",
"main": "index.js",
"name": "archiver",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/archiverjs/node-archiver.git"
},
"scripts": {
"bench": "node benchmark/simple/pack-zip.js",
"test": "mocha --reporter dot"
},
"version": "5.3.1"
}

View File

@@ -1,23 +1,40 @@
{
"name": "async",
"description": "Higher-order functions and common patterns for asynchronous code",
"version": "3.2.3",
"main": "dist/async.js",
"author": "Caolan McMahon",
"homepage": "https://caolan.github.io/async/",
"repository": {
"type": "git",
"url": "https://github.com/caolan/async.git"
"_args": [
[
"async@3.2.3",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "async@3.2.3",
"_id": "async@3.2.3",
"_inBundle": false,
"_integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==",
"_location": "/async",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "async@3.2.3",
"name": "async",
"escapedName": "async",
"rawSpec": "3.2.3",
"saveSpec": null,
"fetchSpec": "3.2.3"
},
"_requiredBy": [
"/archiver"
],
"_resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz",
"_spec": "3.2.3",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Caolan McMahon"
},
"bugs": {
"url": "https://github.com/caolan/async/issues"
},
"keywords": [
"async",
"callback",
"module",
"utility"
],
"description": "Higher-order functions and common patterns for asynchronous code",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
@@ -60,6 +77,26 @@
"semver": "^5.5.0",
"yargs": "^11.0.0"
},
"homepage": "https://caolan.github.io/async/",
"keywords": [
"async",
"callback",
"module",
"utility"
],
"license": "MIT",
"main": "dist/async.js",
"module": "dist/async.mjs",
"name": "async",
"nyc": {
"exclude": [
"test"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/caolan/async.git"
},
"scripts": {
"coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert",
"coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
@@ -70,11 +107,5 @@
"mocha-test": "npm run mocha-node-test && npm run mocha-browser-test",
"test": "npm run lint && npm run mocha-node-test"
},
"license": "MIT",
"nyc": {
"exclude": [
"test"
]
},
"module": "dist/async.mjs"
}
"version": "3.2.3"
}

View File

@@ -1,21 +1,47 @@
{
"name": "balanced-match",
"_args": [
[
"balanced-match@1.0.2",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "balanced-match@1.0.2",
"_id": "balanced-match@1.0.2",
"_inBundle": false,
"_integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
"_location": "/balanced-match",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "balanced-match@1.0.2",
"name": "balanced-match",
"escapedName": "balanced-match",
"rawSpec": "1.0.2",
"saveSpec": null,
"fetchSpec": "1.0.2"
},
"_requiredBy": [
"/brace-expansion"
],
"_resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
"_spec": "1.0.2",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Julian Gruber",
"email": "mail@juliangruber.com",
"url": "http://juliangruber.com"
},
"bugs": {
"url": "https://github.com/juliangruber/balanced-match/issues"
},
"description": "Match balanced character pairs, like \"{\" and \"}\"",
"version": "1.0.2",
"repository": {
"type": "git",
"url": "git://github.com/juliangruber/balanced-match.git"
},
"homepage": "https://github.com/juliangruber/balanced-match",
"main": "index.js",
"scripts": {
"test": "tape test/test.js",
"bench": "matcha test/bench.js"
},
"devDependencies": {
"matcha": "^0.7.0",
"tape": "^4.6.0"
},
"homepage": "https://github.com/juliangruber/balanced-match",
"keywords": [
"match",
"regexp",
@@ -23,12 +49,17 @@
"balanced",
"parse"
],
"author": {
"name": "Julian Gruber",
"email": "mail@juliangruber.com",
"url": "http://juliangruber.com"
},
"license": "MIT",
"main": "index.js",
"name": "balanced-match",
"repository": {
"type": "git",
"url": "git://github.com/juliangruber/balanced-match.git"
},
"scripts": {
"bench": "matcha test/bench.js",
"test": "tape test/test.js"
},
"testling": {
"files": "test/*.js",
"browsers": [
@@ -44,5 +75,6 @@
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
},
"version": "1.0.2"
}

View File

@@ -1,12 +1,41 @@
{
"name": "base64-js",
"description": "Base64 encoding/decoding in pure JS",
"version": "1.5.1",
"author": "T. Jameson Little <t.jameson.little@gmail.com>",
"typings": "index.d.ts",
"_args": [
[
"base64-js@1.5.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "base64-js@1.5.1",
"_id": "base64-js@1.5.1",
"_inBundle": false,
"_integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
"_location": "/base64-js",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "base64-js@1.5.1",
"name": "base64-js",
"escapedName": "base64-js",
"rawSpec": "1.5.1",
"saveSpec": null,
"fetchSpec": "1.5.1"
},
"_requiredBy": [
"/buffer"
],
"_resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
"_spec": "1.5.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "T. Jameson Little",
"email": "t.jameson.little@gmail.com"
},
"bugs": {
"url": "https://github.com/beatgammit/base64-js/issues"
},
"description": "Base64 encoding/decoding in pure JS",
"devDependencies": {
"babel-minify": "^0.5.1",
"benchmark": "^2.1.4",
@@ -14,22 +43,6 @@
"standard": "*",
"tape": "4.x"
},
"homepage": "https://github.com/beatgammit/base64-js",
"keywords": [
"base64"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/beatgammit/base64-js.git"
},
"scripts": {
"build": "browserify -s base64js -r ./ | minify > base64js.min.js",
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "tape test/*.js"
},
"funding": [
{
"type": "github",
@@ -43,5 +56,24 @@
"type": "consulting",
"url": "https://feross.org/support"
}
]
],
"homepage": "https://github.com/beatgammit/base64-js",
"keywords": [
"base64"
],
"license": "MIT",
"main": "index.js",
"name": "base64-js",
"repository": {
"type": "git",
"url": "git://github.com/beatgammit/base64-js.git"
},
"scripts": {
"build": "browserify -s base64js -r ./ | minify > base64js.min.js",
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "tape test/*.js"
},
"typings": "index.d.ts",
"version": "1.5.1"
}

View File

@@ -1,48 +1,83 @@
{
"name": "big-integer",
"version": "1.6.51",
"author": "Peter Olson <peter.e.c.olson+npm@gmail.com>",
"description": "An arbitrary length integer library for Javascript",
"contributors": [],
"bin": {},
"scripts": {
"test": "tsc && karma start my.conf.js && node spec/tsDefinitions.js",
"minify": "uglifyjs BigInteger.js -o BigInteger.min.js"
},
"main": "./BigInteger",
"repository": {
"type": "git",
"url": "git@github.com:peterolson/BigInteger.js.git"
},
"keywords": [
"math",
"big",
"bignum",
"bigint",
"biginteger",
"integer",
"arbitrary",
"precision",
"arithmetic"
],
"devDependencies": {
"@types/lodash": "^4.14.175",
"@types/node": "^7.10.2",
"coveralls": "^3.0.6",
"jasmine": "3.5.0",
"jasmine-core": "^3.5.0",
"karma": "^6.3.4",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "^4.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"lodash": "^4.17.21",
"typescript": "^3.6.3",
"uglifyjs": "^2.4.10"
},
"license": "Unlicense",
"engines": {
"node": ">=0.6"
},
"typings": "./BigInteger.d.ts"
}
{
"_args": [
[
"big-integer@1.6.51",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "big-integer@1.6.51",
"_id": "big-integer@1.6.51",
"_inBundle": false,
"_integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==",
"_location": "/big-integer",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "big-integer@1.6.51",
"name": "big-integer",
"escapedName": "big-integer",
"rawSpec": "1.6.51",
"saveSpec": null,
"fetchSpec": "1.6.51"
},
"_requiredBy": [
"/unzipper"
],
"_resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz",
"_spec": "1.6.51",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Peter Olson",
"email": "peter.e.c.olson+npm@gmail.com"
},
"bugs": {
"url": "https://github.com/peterolson/BigInteger.js/issues"
},
"contributors": [],
"description": "An arbitrary length integer library for Javascript",
"devDependencies": {
"@types/lodash": "^4.14.175",
"@types/node": "^7.10.2",
"coveralls": "^3.0.6",
"jasmine": "3.5.0",
"jasmine-core": "^3.5.0",
"karma": "^6.3.4",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "^4.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"lodash": "^4.17.21",
"typescript": "^3.6.3",
"uglifyjs": "^2.4.10"
},
"engines": {
"node": ">=0.6"
},
"homepage": "https://github.com/peterolson/BigInteger.js#readme",
"keywords": [
"math",
"big",
"bignum",
"bigint",
"biginteger",
"integer",
"arbitrary",
"precision",
"arithmetic"
],
"license": "Unlicense",
"main": "./BigInteger",
"name": "big-integer",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/peterolson/BigInteger.js.git"
},
"scripts": {
"minify": "uglifyjs BigInteger.js -o BigInteger.min.js",
"test": "tsc && karma start my.conf.js && node spec/tsDefinitions.js"
},
"typings": "./BigInteger.d.ts",
"version": "1.6.51"
}

View File

@@ -1,38 +1,71 @@
{
"name" : "binary",
"version" : "0.3.0",
"description" : "Unpack multibyte binary values from buffers",
"main" : "./index.js",
"repository" : {
"type" : "git",
"url" : "http://github.com/substack/node-binary.git"
},
"keywords": [
"binary",
"decode",
"endian",
"unpack",
"signed",
"unsigned"
],
"author" : {
"name" : "James Halliday",
"email" : "mail@substack.net",
"url" : "http://substack.net"
},
"dependencies" : {
"chainsaw" : "~0.1.0",
"buffers" : "~0.1.1"
},
"devDependencies" : {
"seq" : "~0.2.5",
"tap" : "~0.2.4"
},
"scripts" : {
"test" : "tap test/*.js"
},
"license" : "MIT",
"engine" : {
"node" : ">=0.4.0"
}
"_args": [
[
"binary@0.3.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "binary@0.3.0",
"_id": "binary@0.3.0",
"_inBundle": false,
"_integrity": "sha1-n2BVO8XOjDOG87VTz/R0Yq3sqnk=",
"_location": "/binary",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "binary@0.3.0",
"name": "binary",
"escapedName": "binary",
"rawSpec": "0.3.0",
"saveSpec": null,
"fetchSpec": "0.3.0"
},
"_requiredBy": [
"/unzipper"
],
"_resolved": "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz",
"_spec": "0.3.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
},
"bugs": {
"url": "https://github.com/substack/node-binary/issues"
},
"dependencies": {
"buffers": "~0.1.1",
"chainsaw": "~0.1.0"
},
"description": "Unpack multibyte binary values from buffers",
"devDependencies": {
"seq": "~0.2.5",
"tap": "~0.2.4"
},
"engine": {
"node": ">=0.4.0"
},
"homepage": "https://github.com/substack/node-binary#readme",
"keywords": [
"binary",
"decode",
"endian",
"unpack",
"signed",
"unsigned"
],
"license": "MIT",
"main": "./index.js",
"name": "binary",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/substack/node-binary.git"
},
"scripts": {
"test": "tap test/*.js"
},
"version": "0.3.0"
}

View File

@@ -1,37 +1,69 @@
{
"name": "bl",
"version": "4.1.0",
"description": "Buffer List: collect buffers and access with a standard readable Buffer interface, streamable too!",
"license": "MIT",
"main": "bl.js",
"scripts": {
"lint": "standard *.js test/*.js",
"test": "npm run lint && node test/test.js | faucet"
"_args": [
[
"bl@4.1.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "bl@4.1.0",
"_id": "bl@4.1.0",
"_inBundle": false,
"_integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
"_location": "/bl",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "bl@4.1.0",
"name": "bl",
"escapedName": "bl",
"rawSpec": "4.1.0",
"saveSpec": null,
"fetchSpec": "4.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rvagg/bl.git"
},
"homepage": "https://github.com/rvagg/bl",
"_requiredBy": [
"/tar-stream"
],
"_resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
"_spec": "4.1.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"authors": [
"Rod Vagg <rod@vagg.org> (https://github.com/rvagg)",
"Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)",
"Jarett Cruger <jcrugzz@gmail.com> (https://github.com/jcrugzz)"
],
"bugs": {
"url": "https://github.com/rvagg/bl/issues"
},
"dependencies": {
"buffer": "^5.5.0",
"inherits": "^2.0.4",
"readable-stream": "^3.4.0"
},
"description": "Buffer List: collect buffers and access with a standard readable Buffer interface, streamable too!",
"devDependencies": {
"faucet": "~0.0.1",
"standard": "^14.3.0",
"tape": "^4.11.0"
},
"homepage": "https://github.com/rvagg/bl",
"keywords": [
"buffer",
"buffers",
"stream",
"awesomesauce"
],
"dependencies": {
"buffer": "^5.5.0",
"inherits": "^2.0.4",
"readable-stream": "^3.4.0"
"license": "MIT",
"main": "bl.js",
"name": "bl",
"repository": {
"type": "git",
"url": "git+https://github.com/rvagg/bl.git"
},
"devDependencies": {
"faucet": "~0.0.1",
"standard": "^14.3.0",
"tape": "^4.11.0"
}
"scripts": {
"lint": "standard *.js test/*.js",
"test": "npm run lint && node test/test.js | faucet"
},
"version": "4.1.0"
}

View File

@@ -1,44 +1,43 @@
{
"name": "bluebird",
"description": "Full featured Promises/A+ implementation with exceptionally good performance",
"version": "3.4.7",
"keywords": [
"promise",
"performance",
"promises",
"promises-a",
"promises-aplus",
"async",
"await",
"deferred",
"deferreds",
"future",
"flow control",
"dsl",
"fluent interface"
"_args": [
[
"bluebird@3.4.7",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"scripts": {
"lint": "node scripts/jshint.js",
"test": "node tools/test.js",
"istanbul": "istanbul",
"prepublish": "npm run generate-browser-core && npm run generate-browser-full",
"generate-browser-full": "node tools/build.js --no-clean --no-debug --release --browser --minify",
"generate-browser-core": "node tools/build.js --features=core --no-debug --release --zalgo --browser --minify && mv js/browser/bluebird.js js/browser/bluebird.core.js && mv js/browser/bluebird.min.js js/browser/bluebird.core.min.js"
"_development": true,
"_from": "bluebird@3.4.7",
"_id": "bluebird@3.4.7",
"_inBundle": false,
"_integrity": "sha1-9y12C+Cbf3bQjtj66Ysomo0F+rM=",
"_location": "/bluebird",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "bluebird@3.4.7",
"name": "bluebird",
"escapedName": "bluebird",
"rawSpec": "3.4.7",
"saveSpec": null,
"fetchSpec": "3.4.7"
},
"homepage": "https://github.com/petkaantonov/bluebird",
"repository": {
"type": "git",
"url": "git://github.com/petkaantonov/bluebird.git"
},
"bugs": {
"url": "http://github.com/petkaantonov/bluebird/issues"
},
"license": "MIT",
"_requiredBy": [
"/unzipper"
],
"_resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz",
"_spec": "3.4.7",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Petka Antonov",
"email": "petka_antonov@hotmail.com",
"url": "http://github.com/petkaantonov/"
},
"browser": "./js/browser/bluebird.js",
"bugs": {
"url": "http://github.com/petkaantonov/bluebird/issues"
},
"description": "Full featured Promises/A+ implementation with exceptionally good performance",
"devDependencies": {
"acorn": "~0.6.0",
"baconjs": "^0.7.43",
@@ -54,6 +53,7 @@
"istanbul": "^0.3.5",
"jshint": "^2.6.0",
"jshint-stylish": "~0.2.0",
"kefir": "^2.4.1",
"mkdirp": "~0.5.0",
"mocha": "~2.1",
"open": "~0.0.5",
@@ -62,15 +62,43 @@
"rx": "^2.3.25",
"serve-static": "^1.7.1",
"sinon": "~1.7.3",
"uglify-js": "~2.4.16",
"kefir": "^2.4.1"
"uglify-js": "~2.4.16"
},
"readmeFilename": "README.md",
"main": "./js/release/bluebird.js",
"browser": "./js/browser/bluebird.js",
"files": [
"js/browser",
"js/release",
"LICENSE"
]
],
"homepage": "https://github.com/petkaantonov/bluebird",
"keywords": [
"promise",
"performance",
"promises",
"promises-a",
"promises-aplus",
"async",
"await",
"deferred",
"deferreds",
"future",
"flow control",
"dsl",
"fluent interface"
],
"license": "MIT",
"main": "./js/release/bluebird.js",
"name": "bluebird",
"repository": {
"type": "git",
"url": "git://github.com/petkaantonov/bluebird.git"
},
"scripts": {
"generate-browser-core": "node tools/build.js --features=core --no-debug --release --zalgo --browser --minify && mv js/browser/bluebird.js js/browser/bluebird.core.js && mv js/browser/bluebird.min.js js/browser/bluebird.core.min.js",
"generate-browser-full": "node tools/build.js --no-clean --no-debug --release --browser --minify",
"istanbul": "istanbul",
"lint": "node scripts/jshint.js",
"prepublish": "npm run generate-browser-core && npm run generate-browser-full",
"test": "node tools/test.js"
},
"version": "3.4.7"
}

View File

@@ -1,33 +1,64 @@
{
"name": "brace-expansion",
"description": "Brace expansion as known from sh/bash",
"version": "1.1.11",
"repository": {
"type": "git",
"url": "git://github.com/juliangruber/brace-expansion.git"
"_args": [
[
"brace-expansion@1.1.11",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "brace-expansion@1.1.11",
"_id": "brace-expansion@1.1.11",
"_inBundle": false,
"_integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
"_location": "/brace-expansion",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "brace-expansion@1.1.11",
"name": "brace-expansion",
"escapedName": "brace-expansion",
"rawSpec": "1.1.11",
"saveSpec": null,
"fetchSpec": "1.1.11"
},
"homepage": "https://github.com/juliangruber/brace-expansion",
"main": "index.js",
"scripts": {
"test": "tape test/*.js",
"gentest": "bash test/generate.sh",
"bench": "matcha test/perf/bench.js"
},
"dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
},
"devDependencies": {
"matcha": "^0.7.0",
"tape": "^4.6.0"
},
"keywords": [],
"_requiredBy": [
"/minimatch"
],
"_resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"_spec": "1.1.11",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Julian Gruber",
"email": "mail@juliangruber.com",
"url": "http://juliangruber.com"
},
"bugs": {
"url": "https://github.com/juliangruber/brace-expansion/issues"
},
"dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
},
"description": "Brace expansion as known from sh/bash",
"devDependencies": {
"matcha": "^0.7.0",
"tape": "^4.6.0"
},
"homepage": "https://github.com/juliangruber/brace-expansion",
"keywords": [],
"license": "MIT",
"main": "index.js",
"name": "brace-expansion",
"repository": {
"type": "git",
"url": "git://github.com/juliangruber/brace-expansion.git"
},
"scripts": {
"bench": "matcha test/perf/bench.js",
"gentest": "bash test/generate.sh",
"test": "tape test/*.js"
},
"testling": {
"files": "test/*.js",
"browsers": [
@@ -43,5 +74,6 @@
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
},
"version": "1.1.11"
}

View File

@@ -1,39 +1,74 @@
{
"author": "Brian J. Brennan <brianloveswords@gmail.com>",
"name": "buffer-crc32",
"_args": [
[
"buffer-crc32@0.2.13",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "buffer-crc32@0.2.13",
"_id": "buffer-crc32@0.2.13",
"_inBundle": false,
"_integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=",
"_location": "/buffer-crc32",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "buffer-crc32@0.2.13",
"name": "buffer-crc32",
"escapedName": "buffer-crc32",
"rawSpec": "0.2.13",
"saveSpec": null,
"fetchSpec": "0.2.13"
},
"_requiredBy": [
"/archiver",
"/compress-commons"
],
"_resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
"_spec": "0.2.13",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Brian J. Brennan",
"email": "brianloveswords@gmail.com"
},
"bugs": {
"url": "https://github.com/brianloveswords/buffer-crc32/issues"
},
"contributors": [
{
"name": "Vladimir Kuznetsov"
}
],
"dependencies": {},
"description": "A pure javascript CRC32 algorithm that plays nice with binary data",
"version": "0.2.13",
"devDependencies": {
"tap": "~0.2.5"
},
"engines": {
"node": "*"
},
"files": [
"index.js"
],
"homepage": "https://github.com/brianloveswords/buffer-crc32",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/brianloveswords/buffer-crc32/raw/master/LICENSE"
}
],
"contributors": [
{
"name": "Vladimir Kuznetsov",
"github": "mistakster"
}
],
"homepage": "https://github.com/brianloveswords/buffer-crc32",
"main": "index.js",
"name": "buffer-crc32",
"optionalDependencies": {},
"repository": {
"type": "git",
"url": "git://github.com/brianloveswords/buffer-crc32.git"
},
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/tap tests/*.test.js"
"test": "tap tests/*.test.js"
},
"dependencies": {},
"devDependencies": {
"tap": "~0.2.5"
},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"license": "MIT",
"files": [
"index.js"
]
"version": "0.2.13"
}

View File

@@ -1,34 +1,65 @@
{
"name": "buffer-indexof-polyfill",
"version": "1.0.2",
"_args": [
[
"buffer-indexof-polyfill@1.0.2",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "buffer-indexof-polyfill@1.0.2",
"_id": "buffer-indexof-polyfill@1.0.2",
"_inBundle": false,
"_integrity": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==",
"_location": "/buffer-indexof-polyfill",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "buffer-indexof-polyfill@1.0.2",
"name": "buffer-indexof-polyfill",
"escapedName": "buffer-indexof-polyfill",
"rawSpec": "1.0.2",
"saveSpec": null,
"fetchSpec": "1.0.2"
},
"_requiredBy": [
"/unzipper"
],
"_resolved": "https://registry.npmjs.org/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.2.tgz",
"_spec": "1.0.2",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "https://github.com/sarosia"
},
"bugs": {
"url": "https://github.com/sarosia/buffer-indexof-polyfill/issues"
},
"description": "This is a polyfill for Buffer#indexOf introduced in NodeJS 4.0.",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "eslint .",
"fix": "eslint . --fix"
},
"author": "https://github.com/sarosia",
"license": "MIT",
"engines": {
"node": ">=0.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sarosia/buffer-indexof-polyfill.git"
},
"devDependencies": {
"chai": "^3.3.0",
"eslint": "^1.10.3",
"mocha": "^2.3.3"
},
"engines": {
"node": ">=0.10"
},
"homepage": "https://github.com/sarosia/buffer-indexof-polyfill#readme",
"keywords": [
"buffer",
"indexof",
"polyfill"
],
"bugs": {
"url": "https://github.com/sarosia/buffer-indexof-polyfill/issues"
"license": "MIT",
"main": "index.js",
"name": "buffer-indexof-polyfill",
"repository": {
"type": "git",
"url": "git+https://github.com/sarosia/buffer-indexof-polyfill.git"
},
"homepage": "https://github.com/sarosia/buffer-indexof-polyfill#readme"
"scripts": {
"fix": "eslint . --fix",
"lint": "eslint .",
"test": "mocha"
},
"version": "1.0.2"
}

View File

@@ -1,7 +1,33 @@
{
"name": "buffer",
"description": "Node.js Buffer API, for the browser",
"version": "5.7.1",
"_args": [
[
"buffer@5.7.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "buffer@5.7.1",
"_id": "buffer@5.7.1",
"_inBundle": false,
"_integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
"_location": "/buffer",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "buffer@5.7.1",
"name": "buffer",
"escapedName": "buffer",
"rawSpec": "5.7.1",
"saveSpec": null,
"fetchSpec": "5.7.1"
},
"_requiredBy": [
"/bl"
],
"_resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
"_spec": "5.7.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
@@ -11,13 +37,20 @@
"url": "https://github.com/feross/buffer/issues"
},
"contributors": [
"Romain Beauxis <toots@rastageeks.org>",
"James Halliday <mail@substack.net>"
{
"name": "Romain Beauxis",
"email": "toots@rastageeks.org"
},
{
"name": "James Halliday",
"email": "mail@substack.net"
}
],
"dependencies": {
"base64-js": "^1.3.1",
"ieee754": "^1.1.13"
},
"description": "Node.js Buffer API, for the browser",
"devDependencies": {
"airtap": "^3.0.0",
"benchmark": "^2.1.4",
@@ -32,6 +65,20 @@
"through2": "^4.0.2",
"uglify-js": "^3.11.3"
},
"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/buffer",
"jspm": {
"map": {
@@ -51,7 +98,7 @@
],
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"name": "buffer",
"repository": {
"type": "git",
"url": "git://github.com/feross/buffer.git"
@@ -79,18 +126,6 @@
"SharedArrayBuffer"
]
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
"types": "index.d.ts",
"version": "5.7.1"
}

View File

@@ -1,14 +1,54 @@
{
"name" : "buffers",
"description" : "Treat a collection of Buffers as a single contiguous partially mutable Buffer.",
"version" : "0.1.1",
"repository" : "http://github.com/substack/node-buffers.git",
"author" : "James Halliday <mail@substack.net> (http://substack.net)",
"main" : "./index",
"scripts" : {
"test" : "expresso"
},
"engines" : {
"node" : ">=0.2.0"
}
"_args": [
[
"buffers@0.1.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "buffers@0.1.1",
"_id": "buffers@0.1.1",
"_inBundle": false,
"_integrity": "sha1-skV5w77U1tOWru5tmorn9Ugqt7s=",
"_location": "/buffers",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "buffers@0.1.1",
"name": "buffers",
"escapedName": "buffers",
"rawSpec": "0.1.1",
"saveSpec": null,
"fetchSpec": "0.1.1"
},
"_requiredBy": [
"/binary"
],
"_resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz",
"_spec": "0.1.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
},
"bugs": {
"url": "https://github.com/substack/node-buffers/issues"
},
"description": "Treat a collection of Buffers as a single contiguous partially mutable Buffer.",
"engines": {
"node": ">=0.2.0"
},
"homepage": "https://github.com/substack/node-buffers#readme",
"main": "./index",
"name": "buffers",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/substack/node-buffers.git"
},
"scripts": {
"test": "expresso"
},
"version": "0.1.1"
}

View File

@@ -1,23 +1,62 @@
{
"name" : "chainsaw",
"version" : "0.1.0",
"description" : "Build chainable fluent interfaces the easy way... with a freakin' chainsaw!",
"main" : "./index.js",
"repository" : {
"type" : "git",
"url" : "http://github.com/substack/node-chainsaw.git"
},
"dependencies" : {
"traverse" : ">=0.3.0 <0.4"
},
"keywords" : [
"chain",
"fluent",
"interface",
"monad",
"monadic"
],
"author" : "James Halliday <mail@substack.net> (http://substack.net)",
"license" : "MIT/X11",
"engine" : { "node" : ">=0.4.0" }
"_args": [
[
"chainsaw@0.1.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "chainsaw@0.1.0",
"_id": "chainsaw@0.1.0",
"_inBundle": false,
"_integrity": "sha1-XqtQsor+WAdNDVgpE4iCi15fvJg=",
"_location": "/chainsaw",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "chainsaw@0.1.0",
"name": "chainsaw",
"escapedName": "chainsaw",
"rawSpec": "0.1.0",
"saveSpec": null,
"fetchSpec": "0.1.0"
},
"_requiredBy": [
"/binary"
],
"_resolved": "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz",
"_spec": "0.1.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
},
"bugs": {
"url": "https://github.com/substack/node-chainsaw/issues"
},
"dependencies": {
"traverse": ">=0.3.0 <0.4"
},
"description": "Build chainable fluent interfaces the easy way... with a freakin' chainsaw!",
"engine": {
"node": ">=0.4.0"
},
"homepage": "https://github.com/substack/node-chainsaw#readme",
"keywords": [
"chain",
"fluent",
"interface",
"monad",
"monadic"
],
"license": "MIT/X11",
"main": "./index.js",
"name": "chainsaw",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/substack/node-chainsaw.git"
},
"version": "0.1.0"
}

View File

@@ -1,45 +1,74 @@
{
"name": "compress-commons",
"version": "4.1.1",
"description": "a library that defines a common interface for working with archive formats within node",
"homepage": "https://github.com/archiverjs/node-compress-commons",
"_args": [
[
"compress-commons@4.1.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "compress-commons@4.1.1",
"_id": "compress-commons@4.1.1",
"_inBundle": false,
"_integrity": "sha512-QLdDLCKNV2dtoTorqgxngQCMA+gWXkM/Nwu7FpeBhk/RdkzimqC3jueb/FDmaZeXh+uby1jkBqE3xArsLBE5wQ==",
"_location": "/compress-commons",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "compress-commons@4.1.1",
"name": "compress-commons",
"escapedName": "compress-commons",
"rawSpec": "4.1.1",
"saveSpec": null,
"fetchSpec": "4.1.1"
},
"_requiredBy": [
"/zip-stream"
],
"_resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-4.1.1.tgz",
"_spec": "4.1.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Chris Talkington",
"url": "http://christalkington.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/archiverjs/node-compress-commons.git"
},
"bugs": {
"url": "https://github.com/archiverjs/node-compress-commons/issues"
},
"license": "MIT",
"main": "lib/compress-commons.js",
"files": [
"lib"
],
"engines": {
"node": ">= 10"
},
"scripts": {
"test": "mocha --reporter dot"
},
"dependencies": {
"buffer-crc32": "^0.2.13",
"crc32-stream": "^4.0.2",
"normalize-path": "^3.0.0",
"readable-stream": "^3.6.0"
},
"description": "a library that defines a common interface for working with archive formats within node",
"devDependencies": {
"chai": "^4.0.0",
"mkdirp": "^1.0.4",
"mocha": "^8.0.1",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">= 10"
},
"files": [
"lib"
],
"homepage": "https://github.com/archiverjs/node-compress-commons",
"keywords": [
"compress",
"commons",
"archive"
]
],
"license": "MIT",
"main": "lib/compress-commons.js",
"name": "compress-commons",
"repository": {
"type": "git",
"url": "git+https://github.com/archiverjs/node-compress-commons.git"
},
"scripts": {
"test": "mocha --reporter dot"
},
"version": "4.1.1"
}

View File

@@ -1,43 +1,92 @@
{
"name" : "concat-map",
"description" : "concatenative mapdashery",
"version" : "0.0.1",
"repository" : {
"type" : "git",
"url" : "git://github.com/substack/node-concat-map.git"
},
"main" : "index.js",
"keywords" : [
"concat",
"concatMap",
"map",
"functional",
"higher-order"
],
"directories" : {
"example" : "example",
"test" : "test"
},
"scripts" : {
"test" : "tape test/*.js"
},
"devDependencies" : {
"tape" : "~2.4.0"
},
"license" : "MIT",
"author" : {
"name" : "James Halliday",
"email" : "mail@substack.net",
"url" : "http://substack.net"
},
"testling" : {
"files" : "test/*.js",
"browsers" : {
"ie" : [ 6, 7, 8, 9 ],
"ff" : [ 3.5, 10, 15.0 ],
"chrome" : [ 10, 22 ],
"safari" : [ 5.1 ],
"opera" : [ 12 ]
}
"_args": [
[
"concat-map@0.0.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "concat-map@0.0.1",
"_id": "concat-map@0.0.1",
"_inBundle": false,
"_integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
"_location": "/concat-map",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "concat-map@0.0.1",
"name": "concat-map",
"escapedName": "concat-map",
"rawSpec": "0.0.1",
"saveSpec": null,
"fetchSpec": "0.0.1"
},
"_requiredBy": [
"/brace-expansion"
],
"_resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
"_spec": "0.0.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
},
"bugs": {
"url": "https://github.com/substack/node-concat-map/issues"
},
"description": "concatenative mapdashery",
"devDependencies": {
"tape": "~2.4.0"
},
"directories": {
"example": "example",
"test": "test"
},
"homepage": "https://github.com/substack/node-concat-map#readme",
"keywords": [
"concat",
"concatMap",
"map",
"functional",
"higher-order"
],
"license": "MIT",
"main": "index.js",
"name": "concat-map",
"repository": {
"type": "git",
"url": "git://github.com/substack/node-concat-map.git"
},
"scripts": {
"test": "tape test/*.js"
},
"testling": {
"files": "test/*.js",
"browsers": {
"ie": [
6,
7,
8,
9
],
"ff": [
3.5,
10,
15
],
"chrome": [
10,
22
],
"safari": [
5.1
],
"opera": [
12
]
}
},
"version": "0.0.1"
}

View File

@@ -1,15 +1,53 @@
{
"name": "core-util-is",
"version": "1.0.3",
"_args": [
[
"core-util-is@1.0.3",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "core-util-is@1.0.3",
"_id": "core-util-is@1.0.3",
"_inBundle": false,
"_integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
"_location": "/core-util-is",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "core-util-is@1.0.3",
"name": "core-util-is",
"escapedName": "core-util-is",
"rawSpec": "1.0.3",
"saveSpec": null,
"fetchSpec": "1.0.3"
},
"_requiredBy": [
"/archiver-utils/readable-stream",
"/duplexer2/readable-stream",
"/jszip/readable-stream",
"/lazystream/readable-stream",
"/unzipper/readable-stream"
],
"_resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
"_spec": "1.0.3",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me/"
},
"bugs": {
"url": "https://github.com/isaacs/core-util-is/issues"
},
"description": "The `util.is*` functions introduced in Node v0.12.",
"main": "lib/util.js",
"devDependencies": {
"tap": "^15.0.9"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git://github.com/isaacs/core-util-is"
},
"homepage": "https://github.com/isaacs/core-util-is#readme",
"keywords": [
"util",
"isBuffer",
@@ -21,18 +59,18 @@
"isThat",
"polyfill"
],
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/isaacs/core-util-is/issues"
"main": "lib/util.js",
"name": "core-util-is",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/core-util-is.git"
},
"scripts": {
"test": "tap test.js",
"preversion": "npm test",
"postversion": "npm publish",
"prepublishOnly": "git push origin --follow-tags"
"prepublishOnly": "git push origin --follow-tags",
"preversion": "npm test",
"test": "tap test.js"
},
"devDependencies": {
"tap": "^15.0.9"
}
"version": "1.0.3"
}

View File

@@ -1,43 +1,98 @@
{
"name": "crc-32",
"version": "1.2.2",
"author": "sheetjs",
"description": "Pure-JS CRC-32",
"keywords": [ "crc", "crc32", "checksum" ],
"bin": {
"crc32": "bin/crc32.njs"
},
"main": "crc32.js",
"types": "types/index.d.ts",
"typesVersions": { "*": { "*": ["types/index.d.ts" ] } },
"dependencies": {
},
"devDependencies": {
"printj": "~1.3.1",
"exit-on-epipe": "~1.0.1",
"mocha": "~2.5.3",
"blanket": "~1.2.3",
"codepage": "~1.10.0",
"@sheetjs/uglify-js": "~2.7.3",
"@types/node": "^8.0.7",
"dtslint": "^0.1.2",
"typescript": "2.2.0"
},
"repository": { "type": "git", "url": "git://github.com/SheetJS/js-crc32.git" },
"scripts": {
"test": "make test",
"build": "make",
"lint": "make fullint",
"dtslint": "dtslint types"
},
"config": {
"blanket": {
"pattern": "crc32.js"
}
},
"homepage": "https://sheetjs.com/",
"files": ["crc32.js", "crc32c.js", "bin/crc32.njs", "LICENSE", "README.md", "types/index.d.ts", "types/*.json"],
"bugs": { "url": "https://github.com/SheetJS/js-crc32/issues" },
"license": "Apache-2.0",
"engines": { "node": ">=0.8" }
"_args": [
[
"crc-32@1.2.2",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "crc-32@1.2.2",
"_id": "crc-32@1.2.2",
"_inBundle": false,
"_integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==",
"_location": "/crc-32",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "crc-32@1.2.2",
"name": "crc-32",
"escapedName": "crc-32",
"rawSpec": "1.2.2",
"saveSpec": null,
"fetchSpec": "1.2.2"
},
"_requiredBy": [
"/crc32-stream"
],
"_resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz",
"_spec": "1.2.2",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "sheetjs"
},
"bin": {
"crc32": "bin/crc32.njs"
},
"bugs": {
"url": "https://github.com/SheetJS/js-crc32/issues"
},
"config": {
"blanket": {
"pattern": "crc32.js"
}
},
"dependencies": {},
"description": "Pure-JS CRC-32",
"devDependencies": {
"@sheetjs/uglify-js": "~2.7.3",
"@types/node": "^8.0.7",
"blanket": "~1.2.3",
"codepage": "~1.10.0",
"dtslint": "^0.1.2",
"exit-on-epipe": "~1.0.1",
"mocha": "~2.5.3",
"printj": "~1.3.1",
"typescript": "2.2.0"
},
"engines": {
"node": ">=0.8"
},
"files": [
"crc32.js",
"crc32c.js",
"bin/crc32.njs",
"LICENSE",
"README.md",
"types/index.d.ts",
"types/*.json"
],
"homepage": "https://sheetjs.com/",
"keywords": [
"crc",
"crc32",
"checksum"
],
"license": "Apache-2.0",
"main": "crc32.js",
"name": "crc-32",
"repository": {
"type": "git",
"url": "git://github.com/SheetJS/js-crc32.git"
},
"scripts": {
"build": "make",
"dtslint": "dtslint types",
"lint": "make fullint",
"test": "make test"
},
"types": "types/index.d.ts",
"typesVersions": {
"*": {
"*": [
"types/index.d.ts"
]
}
},
"version": "1.2.2"
}

View File

@@ -1,45 +1,74 @@
{
"name": "crc32-stream",
"version": "4.0.2",
"description": "a streaming CRC32 checksumer",
"homepage": "https://github.com/archiverjs/node-crc32-stream",
"_args": [
[
"crc32-stream@4.0.2",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "crc32-stream@4.0.2",
"_id": "crc32-stream@4.0.2",
"_inBundle": false,
"_integrity": "sha512-DxFZ/Hk473b/muq1VJ///PMNLj0ZMnzye9thBpmjpJKCc5eMgB95aK8zCGrGfQ90cWo561Te6HK9D+j4KPdM6w==",
"_location": "/crc32-stream",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "crc32-stream@4.0.2",
"name": "crc32-stream",
"escapedName": "crc32-stream",
"rawSpec": "4.0.2",
"saveSpec": null,
"fetchSpec": "4.0.2"
},
"_requiredBy": [
"/compress-commons"
],
"_resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-4.0.2.tgz",
"_spec": "4.0.2",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Chris Talkington",
"url": "http://christalkington.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/archiverjs/node-crc32-stream.git"
},
"bugs": {
"url": "https://github.com/archiverjs/node-crc32-stream/issues"
},
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib"
],
"engines": {
"node": ">= 10"
},
"scripts": {
"test": "mocha --reporter dot"
},
"dependencies": {
"crc-32": "^1.2.0",
"readable-stream": "^3.4.0"
},
"description": "a streaming CRC32 checksumer",
"devDependencies": {
"chai": "^4.0.0",
"mocha": "^8.0.1"
},
"engines": {
"node": ">= 10"
},
"files": [
"lib"
],
"homepage": "https://github.com/archiverjs/node-crc32-stream",
"keywords": [
"crc32-stream",
"crc32",
"stream",
"checksum"
],
"license": "MIT",
"main": "lib/index.js",
"name": "crc32-stream",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/archiverjs/node-crc32-stream.git"
},
"scripts": {
"test": "mocha --reporter dot"
},
"version": "4.0.2"
}

View File

@@ -1,70 +1,40 @@
{
"name": "dayjs",
"version": "1.11.1",
"_args": [
[
"dayjs@1.11.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "dayjs@1.11.1",
"_id": "dayjs@1.11.1",
"_inBundle": false,
"_integrity": "sha512-ER7EjqVAMkRRsxNCC5YqJ9d9VQYuWdGt7aiH2qA5R5wt8ZmWaP2dLUSIK6y/kVzLMlmh1Tvu5xUf4M/wdGJ5KA==",
"_location": "/dayjs",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "dayjs@1.11.1",
"name": "dayjs",
"escapedName": "dayjs",
"rawSpec": "1.11.1",
"saveSpec": null,
"fetchSpec": "1.11.1"
},
"_requiredBy": [
"/exceljs"
],
"_resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.1.tgz",
"_spec": "1.11.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "iamkun"
},
"bugs": {
"url": "https://github.com/iamkun/dayjs/issues"
},
"description": "2KB immutable date time library alternative to Moment.js with the same modern API ",
"main": "dayjs.min.js",
"types": "index.d.ts",
"scripts": {
"test": "TZ=Pacific/Auckland npm run test-tz && TZ=Europe/London npm run test-tz && TZ=America/Whitehorse npm run test-tz && npm run test-tz && jest",
"test-tz": "date && jest test/timezone.test --coverage=false",
"lint": "./node_modules/.bin/eslint src/* test/* build/*",
"prettier": "prettier --write \"docs/**/*.md\"",
"babel": "cross-env BABEL_ENV=build babel src --out-dir esm --copy-files && node build/esm",
"build": "cross-env BABEL_ENV=build node build && npm run size",
"sauce": "npx karma start karma.sauce.conf.js",
"test:sauce": "npm run sauce -- 0 && npm run sauce -- 1 && npm run sauce -- 2 && npm run sauce -- 3",
"size": "size-limit && gzip-size dayjs.min.js"
},
"pre-commit": [
"lint"
],
"size-limit": [
{
"limit": "2.99 KB",
"path": "dayjs.min.js"
}
],
"jest": {
"roots": [
"test"
],
"testRegex": "test/(.*?/)?.*test.js$",
"testURL": "http://localhost",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*"
]
},
"release": {
"prepare": [
{
"path": "@semantic-release/changelog"
},
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
]
}
]
]
},
"keywords": [
"dayjs",
"date",
"time",
"immutable",
"moment"
],
"author": "iamkun",
"license": "MIT",
"homepage": "https://day.js.org",
"repository": {
"type": "git",
"url": "https://github.com/iamkun/dayjs.git"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.44",
"@babel/core": "^7.0.0-beta.44",
@@ -95,5 +65,69 @@
"rollup-plugin-terser": "^7.0.2",
"size-limit": "^0.18.0",
"typescript": "^2.8.3"
}
},
"homepage": "https://day.js.org",
"jest": {
"roots": [
"test"
],
"testRegex": "test/(.*?/)?.*test.js$",
"testURL": "http://localhost",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*"
]
},
"keywords": [
"dayjs",
"date",
"time",
"immutable",
"moment"
],
"license": "MIT",
"main": "dayjs.min.js",
"name": "dayjs",
"pre-commit": [
"lint"
],
"release": {
"prepare": [
{
"path": "@semantic-release/changelog"
},
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
]
}
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamkun/dayjs.git"
},
"scripts": {
"babel": "cross-env BABEL_ENV=build babel src --out-dir esm --copy-files && node build/esm",
"build": "cross-env BABEL_ENV=build node build && npm run size",
"lint": "eslint src/* test/* build/*",
"prettier": "prettier --write \"docs/**/*.md\"",
"sauce": "npx karma start karma.sauce.conf.js",
"size": "size-limit && gzip-size dayjs.min.js",
"test": "TZ=Pacific/Auckland npm run test-tz && TZ=Europe/London npm run test-tz && TZ=America/Whitehorse npm run test-tz && npm run test-tz && jest",
"test-tz": "date && jest test/timezone.test --coverage=false",
"test:sauce": "npm run sauce -- 0 && npm run sauce -- 1 && npm run sauce -- 2 && npm run sauce -- 3"
},
"size-limit": [
{
"limit": "2.99 KB",
"path": "dayjs.min.js"
}
],
"types": "index.d.ts",
"version": "1.11.1"
}

View File

@@ -1,8 +1,43 @@
{
"name": "readable-stream",
"version": "2.3.7",
"description": "Streams3, a user-land copy of the stream library from Node.js",
"main": "readable.js",
"_args": [
[
"readable-stream@2.3.7",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "readable-stream@2.3.7",
"_id": "readable-stream@2.3.7",
"_inBundle": false,
"_integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
"_location": "/duplexer2/readable-stream",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "readable-stream@2.3.7",
"name": "readable-stream",
"escapedName": "readable-stream",
"rawSpec": "2.3.7",
"saveSpec": null,
"fetchSpec": "2.3.7"
},
"_requiredBy": [
"/duplexer2"
],
"_resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
"_spec": "2.3.7",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"browser": {
"util": false,
"./readable.js": "./readable-browser.js",
"./writable.js": "./writable-browser.js",
"./duplex.js": "./duplex-browser.js",
"./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js"
},
"bugs": {
"url": "https://github.com/nodejs/readable-stream/issues"
},
"dependencies": {
"core-util-is": "~1.0.0",
"inherits": "~2.0.3",
@@ -12,6 +47,7 @@
"string_decoder": "~1.1.1",
"util-deprecate": "~1.0.1"
},
"description": "Streams3, a user-land copy of the stream library from Node.js",
"devDependencies": {
"assert": "^1.4.0",
"babel-polyfill": "^6.9.1",
@@ -21,32 +57,29 @@
"tap": "^0.7.0",
"tape": "^4.8.0"
},
"scripts": {
"test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js",
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js",
"cover": "nyc npm test",
"report": "nyc report --reporter=lcov"
},
"repository": {
"type": "git",
"url": "git://github.com/nodejs/readable-stream"
},
"homepage": "https://github.com/nodejs/readable-stream#readme",
"keywords": [
"readable",
"stream",
"pipe"
],
"browser": {
"util": false,
"./readable.js": "./readable-browser.js",
"./writable.js": "./writable-browser.js",
"./duplex.js": "./duplex-browser.js",
"./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js"
},
"license": "MIT",
"main": "readable.js",
"name": "readable-stream",
"nyc": {
"include": [
"lib/**.js"
]
},
"license": "MIT"
"repository": {
"type": "git",
"url": "git://github.com/nodejs/readable-stream.git"
},
"scripts": {
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js",
"cover": "nyc npm test",
"report": "nyc report --reporter=lcov",
"test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js"
},
"version": "2.3.7"
}

View File

@@ -1,7 +1,34 @@
{
"name": "safe-buffer",
"description": "Safer Node.js Buffer API",
"version": "5.1.2",
"_args": [
[
"safe-buffer@5.1.2",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "safe-buffer@5.1.2",
"_id": "safe-buffer@5.1.2",
"_inBundle": false,
"_integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
"_location": "/duplexer2/safe-buffer",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "safe-buffer@5.1.2",
"name": "safe-buffer",
"escapedName": "safe-buffer",
"rawSpec": "5.1.2",
"saveSpec": null,
"fetchSpec": "5.1.2"
},
"_requiredBy": [
"/duplexer2/readable-stream",
"/duplexer2/string_decoder"
],
"_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
"_spec": "5.1.2",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
@@ -10,6 +37,7 @@
"bugs": {
"url": "https://github.com/feross/safe-buffer/issues"
},
"description": "Safer Node.js Buffer API",
"devDependencies": {
"standard": "*",
"tape": "^4.0.0"
@@ -26,12 +54,14 @@
],
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"name": "safe-buffer",
"repository": {
"type": "git",
"url": "git://github.com/feross/safe-buffer.git"
},
"scripts": {
"test": "standard && tape test/*.js"
}
},
"types": "index.d.ts",
"version": "5.1.2"
}

View File

@@ -1,25 +1,46 @@
{
"name": "string_decoder",
"version": "1.1.1",
"description": "The string_decoder module from Node core",
"main": "lib/string_decoder.js",
"_args": [
[
"string_decoder@1.1.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "string_decoder@1.1.1",
"_id": "string_decoder@1.1.1",
"_inBundle": false,
"_integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
"_location": "/duplexer2/string_decoder",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "string_decoder@1.1.1",
"name": "string_decoder",
"escapedName": "string_decoder",
"rawSpec": "1.1.1",
"saveSpec": null,
"fetchSpec": "1.1.1"
},
"_requiredBy": [
"/duplexer2/readable-stream"
],
"_resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
"_spec": "1.1.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"bugs": {
"url": "https://github.com/nodejs/string_decoder/issues"
},
"dependencies": {
"safe-buffer": "~5.1.0"
},
"description": "The string_decoder module from Node core",
"devDependencies": {
"babel-polyfill": "^6.23.0",
"core-util-is": "^1.0.2",
"inherits": "^2.0.3",
"tap": "~0.4.8"
},
"scripts": {
"test": "tap test/parallel/*.js && node test/verify-dependencies",
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js"
},
"repository": {
"type": "git",
"url": "git://github.com/nodejs/string_decoder.git"
},
"homepage": "https://github.com/nodejs/string_decoder",
"keywords": [
"string",
@@ -27,5 +48,16 @@
"browser",
"browserify"
],
"license": "MIT"
"license": "MIT",
"main": "lib/string_decoder.js",
"name": "string_decoder",
"repository": {
"type": "git",
"url": "git://github.com/nodejs/string_decoder.git"
},
"scripts": {
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js",
"test": "tap test/parallel/*.js && node test/verify-dependencies"
},
"version": "1.1.1"
}

View File

@@ -1,14 +1,58 @@
{
"name": "duplexer2",
"version": "0.1.4",
"_args": [
[
"duplexer2@0.1.4",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "duplexer2@0.1.4",
"_id": "duplexer2@0.1.4",
"_inBundle": false,
"_integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=",
"_location": "/duplexer2",
"_phantomChildren": {
"core-util-is": "1.0.3",
"inherits": "2.0.4",
"isarray": "1.0.0",
"process-nextick-args": "2.0.1",
"util-deprecate": "1.0.2"
},
"_requested": {
"type": "version",
"registry": true,
"raw": "duplexer2@0.1.4",
"name": "duplexer2",
"escapedName": "duplexer2",
"rawSpec": "0.1.4",
"saveSpec": null,
"fetchSpec": "0.1.4"
},
"_requiredBy": [
"/unzipper"
],
"_resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz",
"_spec": "0.1.4",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Conrad Pankoff",
"email": "deoxxa@fknsrs.biz",
"url": "http://www.fknsrs.biz/"
},
"bugs": {
"url": "https://github.com/deoxxa/duplexer2/issues"
},
"dependencies": {
"readable-stream": "^2.0.2"
},
"description": "Like duplexer but using streams3",
"devDependencies": {
"mocha": "^2.2.5"
},
"files": [
"index.js"
],
"scripts": {
"test": "mocha -R tap"
},
"repository": "deoxxa/duplexer2",
"homepage": "https://github.com/deoxxa/duplexer2#readme",
"keywords": [
"duplex",
"duplexer",
@@ -17,12 +61,14 @@
"join",
"combine"
],
"author": "Conrad Pankoff <deoxxa@fknsrs.biz> (http://www.fknsrs.biz/)",
"license": "BSD-3-Clause",
"dependencies": {
"readable-stream": "^2.0.2"
"name": "duplexer2",
"repository": {
"type": "git",
"url": "git+https://github.com/deoxxa/duplexer2.git"
},
"devDependencies": {
"mocha": "^2.2.5"
}
"scripts": {
"test": "mocha -R tap"
},
"version": "0.1.4"
}

View File

@@ -1,20 +1,51 @@
{
"name": "end-of-stream",
"version": "1.4.4",
"description": "Call a callback when a readable/writable/duplex stream has completed or failed.",
"repository": {
"type": "git",
"url": "git://github.com/mafintosh/end-of-stream.git"
"_args": [
[
"end-of-stream@1.4.4",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "end-of-stream@1.4.4",
"_id": "end-of-stream@1.4.4",
"_inBundle": false,
"_integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
"_location": "/end-of-stream",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "end-of-stream@1.4.4",
"name": "end-of-stream",
"escapedName": "end-of-stream",
"rawSpec": "1.4.4",
"saveSpec": null,
"fetchSpec": "1.4.4"
},
"_requiredBy": [
"/tar-stream"
],
"_resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
"_spec": "1.4.4",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Mathias Buus",
"email": "mathiasbuus@gmail.com"
},
"bugs": {
"url": "https://github.com/mafintosh/end-of-stream/issues"
},
"dependencies": {
"once": "^1.4.0"
},
"scripts": {
"test": "node test.js"
"description": "Call a callback when a readable/writable/duplex stream has completed or failed.",
"devDependencies": {
"tape": "^4.11.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/mafintosh/end-of-stream",
"keywords": [
"stream",
"streams",
@@ -24,14 +55,15 @@
"end",
"wait"
],
"bugs": {
"url": "https://github.com/mafintosh/end-of-stream/issues"
},
"homepage": "https://github.com/mafintosh/end-of-stream",
"main": "index.js",
"author": "Mathias Buus <mathiasbuus@gmail.com>",
"license": "MIT",
"devDependencies": {
"tape": "^4.11.0"
}
"main": "index.js",
"name": "end-of-stream",
"repository": {
"type": "git",
"url": "git://github.com/mafintosh/end-of-stream.git"
},
"scripts": {
"test": "node test.js"
},
"version": "1.4.4"
}

View File

@@ -1,149 +1,182 @@
{
"name": "exceljs",
"version": "4.3.0",
"description": "Excel Workbook Manager - Read and Write xlsx and csv Files.",
"private": false,
"license": "MIT",
"author": {
"name": "Guyon Roche",
"email": "guyon@live.com"
},
"repository": {
"type": "git",
"url": "https://github.com/exceljs/exceljs.git"
},
"engines": {
"node": ">=8.3.0"
},
"main": "./excel.js",
"browser": "./dist/exceljs.min.js",
"types": "./index.d.ts",
"files": [
"dist",
"lib",
"excel.js",
"LICENSE",
"README.md",
"README_zh.md",
"index.ts",
"index.d.ts"
],
"scripts": {
"test": "npm run test:full",
"test:es5": "export EXCEL_BUILD=es5 && npm run test:full",
"test:full": "npm run build && npm run test:unit && npm run test:integration && npm run test:end-to-end && npm run test:jasmine",
"test:version": "npm run build && npm run test:unit && npm run test:integration && npm run test:end-to-end && npm run test:browser && npm run test:dist",
"test:all": "npm run test:native && npm run test:es5",
"test:native": "npm run test:full",
"test:unit": "mocha --require spec/config/setup --require spec/config/setup-unit spec/unit --recursive",
"test:integration": "mocha --require spec/config/setup spec/integration --recursive",
"test:end-to-end": "mocha --require spec/config/setup spec/end-to-end --recursive",
"test:browser": "if [ ! -f .disable-test-browser ]; then npm run build && npm run test:jasmine; fi",
"test:jasmine": "grunt jasmine",
"test:unit:es5": "export EXCEL_BUILD=es5 && npm run test:unit",
"test:integration:es5": "export EXCEL_BUILD=es5 && npm run test:integration",
"test:end-to-end:es5": "export EXCEL_BUILD=es5 && npm run test:end-to-end",
"test:dist": "mocha --require spec/config/setup spec/dist --recursive",
"test:manual": "node spec/manual/app.js",
"test:typescript": "mocha -r ts-node/register spec/typescript/**/*.spec.ts",
"clean-build": "npm run clean && npm run build",
"lint": "eslint --format node_modules/eslint-friendly-formatter .",
"lint:fix": "prettier-eslint --write $(pwd)'/**/*.js'",
"lint:staged": "lint-staged",
"clean": "rm -rf build/ && rm -rf dist",
"benchmark": "node --expose-gc benchmark",
"benchmark:debug": "node --expose-gc --inspect-brk --trace-deopt benchmark",
"build": "grunt build",
"install-build": "npm install && grunt build",
"preversion": "npm run clean && npm run build && npm run test:version",
"postversion": "git push --no-verify && git push --tags --no-verify"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"eslint --format node_modules/eslint-friendly-formatter",
"git add"
]
},
"keywords": [
"xlsx",
"json",
"csv",
"excel",
"font",
"border",
"fill",
"number",
"format",
"number format",
"alignment",
"office",
"spreadsheet",
"workbook",
"defined names",
"data validations",
"rich text",
"in-cell format",
"outlineLevel",
"views",
"frozen",
"split",
"pageSetup"
],
"dependencies": {
"archiver": "^5.0.0",
"dayjs": "^1.8.34",
"fast-csv": "^4.3.1",
"jszip": "^3.5.0",
"readable-stream": "^3.6.0",
"saxes": "^5.0.1",
"tmp": "^0.2.0",
"unzipper": "^0.10.11",
"uuid": "^8.3.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.2",
"babelify": "^10.0.0",
"browserify": "^16.5.2",
"chai": "^4.2.0",
"chai-datetime": "^1.7.0",
"chai-xml": "^0.3.2",
"core-js": "^3.6.5",
"dirty-chai": "^2.0.1",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"express": "^4.16.4",
"got": "^9.0.0",
"grunt": "^1.3.0",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^5.3.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jasmine": "^2.2.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-exorcise": "^2.1.1",
"grunt-terser": "^1.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.2.13",
"mocha": "^7.2.0",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0",
"regenerator-runtime": "^0.13.7",
"sax": "^1.2.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}
{
"_args": [
[
"exceljs@4.3.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "exceljs@4.3.0",
"_id": "exceljs@4.3.0",
"_inBundle": false,
"_integrity": "sha512-hTAeo5b5TPvf8Z02I2sKIT4kSfCnOO2bCxYX8ABqODCdAjppI3gI9VYiGCQQYVcBaBSKlFDMKlAQRqC+kV9O8w==",
"_location": "/exceljs",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "exceljs@4.3.0",
"name": "exceljs",
"escapedName": "exceljs",
"rawSpec": "4.3.0",
"saveSpec": null,
"fetchSpec": "4.3.0"
},
"_requiredBy": [
"#DEV:/"
],
"_resolved": "https://registry.npmjs.org/exceljs/-/exceljs-4.3.0.tgz",
"_spec": "4.3.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Guyon Roche",
"email": "guyon@live.com"
},
"browser": "./dist/exceljs.min.js",
"bugs": {
"url": "https://github.com/exceljs/exceljs/issues"
},
"dependencies": {
"archiver": "^5.0.0",
"dayjs": "^1.8.34",
"fast-csv": "^4.3.1",
"jszip": "^3.5.0",
"readable-stream": "^3.6.0",
"saxes": "^5.0.1",
"tmp": "^0.2.0",
"unzipper": "^0.10.11",
"uuid": "^8.3.0"
},
"description": "Excel Workbook Manager - Read and Write xlsx and csv Files.",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.2",
"babelify": "^10.0.0",
"browserify": "^16.5.2",
"chai": "^4.2.0",
"chai-datetime": "^1.7.0",
"chai-xml": "^0.3.2",
"core-js": "^3.6.5",
"dirty-chai": "^2.0.1",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"express": "^4.16.4",
"got": "^9.0.0",
"grunt": "^1.3.0",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^5.3.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jasmine": "^2.2.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-exorcise": "^2.1.1",
"grunt-terser": "^1.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.2.13",
"mocha": "^7.2.0",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0",
"regenerator-runtime": "^0.13.7",
"sax": "^1.2.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=8.3.0"
},
"files": [
"dist",
"lib",
"excel.js",
"LICENSE",
"README.md",
"README_zh.md",
"index.ts",
"index.d.ts"
],
"homepage": "https://github.com/exceljs/exceljs#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"xlsx",
"json",
"csv",
"excel",
"font",
"border",
"fill",
"number",
"format",
"number format",
"alignment",
"office",
"spreadsheet",
"workbook",
"defined names",
"data validations",
"rich text",
"in-cell format",
"outlineLevel",
"views",
"frozen",
"split",
"pageSetup"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"eslint --format node_modules/eslint-friendly-formatter",
"git add"
]
},
"main": "./excel.js",
"name": "exceljs",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/exceljs/exceljs.git"
},
"scripts": {
"benchmark": "node --expose-gc benchmark",
"benchmark:debug": "node --expose-gc --inspect-brk --trace-deopt benchmark",
"build": "grunt build",
"clean": "rm -rf build/ && rm -rf dist",
"clean-build": "npm run clean && npm run build",
"install-build": "npm install && grunt build",
"lint": "eslint --format node_modules/eslint-friendly-formatter .",
"lint:fix": "prettier-eslint --write $(pwd)'/**/*.js'",
"lint:staged": "lint-staged",
"postversion": "git push --no-verify && git push --tags --no-verify",
"preversion": "npm run clean && npm run build && npm run test:version",
"test": "npm run test:full",
"test:all": "npm run test:native && npm run test:es5",
"test:browser": "if [ ! -f .disable-test-browser ]; then npm run build && npm run test:jasmine; fi",
"test:dist": "mocha --require spec/config/setup spec/dist --recursive",
"test:end-to-end": "mocha --require spec/config/setup spec/end-to-end --recursive",
"test:end-to-end:es5": "export EXCEL_BUILD=es5 && npm run test:end-to-end",
"test:es5": "export EXCEL_BUILD=es5 && npm run test:full",
"test:full": "npm run build && npm run test:unit && npm run test:integration && npm run test:end-to-end && npm run test:jasmine",
"test:integration": "mocha --require spec/config/setup spec/integration --recursive",
"test:integration:es5": "export EXCEL_BUILD=es5 && npm run test:integration",
"test:jasmine": "grunt jasmine",
"test:manual": "node spec/manual/app.js",
"test:native": "npm run test:full",
"test:typescript": "mocha -r ts-node/register spec/typescript/**/*.spec.ts",
"test:unit": "mocha --require spec/config/setup --require spec/config/setup-unit spec/unit --recursive",
"test:unit:es5": "export EXCEL_BUILD=es5 && npm run test:unit",
"test:version": "npm run build && npm run test:unit && npm run test:integration && npm run test:end-to-end && npm run test:browser && npm run test:dist"
},
"types": "./index.d.ts",
"version": "4.3.0"
}

View File

@@ -1,27 +1,56 @@
{
"name": "fast-csv",
"version": "4.3.6",
"description": "CSV parser and writer",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./build && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc"
"_args": [
[
"fast-csv@4.3.6",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "fast-csv@4.3.6",
"_id": "fast-csv@4.3.6",
"_inBundle": false,
"_integrity": "sha512-2RNSpuwwsJGP0frGsOmTb9oUF+VkFSM4SyLTDgwf2ciHWTarN0lQTC+F2f/t5J9QjW+c65VFIAAu85GsvMIusw==",
"_location": "/fast-csv",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "fast-csv@4.3.6",
"name": "fast-csv",
"escapedName": "fast-csv",
"rawSpec": "4.3.6",
"saveSpec": null,
"fetchSpec": "4.3.6"
},
"_requiredBy": [
"/exceljs"
],
"_resolved": "https://registry.npmjs.org/fast-csv/-/fast-csv-4.3.6.tgz",
"_spec": "4.3.6",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Doug Martin"
},
"bugs": {
"url": "https://github.com/C2FO/fast-csv/issues"
},
"dependencies": {
"@fast-csv/format": "4.3.5",
"@fast-csv/parse": "4.3.6"
},
"description": "CSV parser and writer",
"directories": {
"lib": "src",
"test": "__tests__"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"build/src/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/C2FO/fast-csv.git",
"directory": "packages/fast-csv"
},
"gitHead": "3dc859edb19924b315051e4c87d6273808a0de73",
"homepage": "http://c2fo.github.com/fast-csv",
"keywords": [
"csv",
"parser",
@@ -30,15 +59,20 @@
"csv writer",
"CSV"
],
"homepage": "http://c2fo.github.com/fast-csv",
"author": "Doug Martin",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
"main": "./build/src/index.js",
"name": "fast-csv",
"repository": {
"type": "git",
"url": "git+https://github.com/C2FO/fast-csv.git",
"directory": "packages/fast-csv"
},
"dependencies": {
"@fast-csv/format": "4.3.5",
"@fast-csv/parse": "4.3.6"
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./build && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc",
"prepublishOnly": "npm run build"
},
"gitHead": "3dc859edb19924b315051e4c87d6273808a0de73"
"types": "./build/src/index.d.ts",
"version": "4.3.6"
}

View File

@@ -1,19 +1,51 @@
{
"name": "fs-constants",
"version": "1.0.0",
"description": "Require constants across node and the browser",
"main": "index.js",
"browser": "browser.js",
"dependencies": {},
"devDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/mafintosh/fs-constants.git"
"_args": [
[
"fs-constants@1.0.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "fs-constants@1.0.0",
"_id": "fs-constants@1.0.0",
"_inBundle": false,
"_integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
"_location": "/fs-constants",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "fs-constants@1.0.0",
"name": "fs-constants",
"escapedName": "fs-constants",
"rawSpec": "1.0.0",
"saveSpec": null,
"fetchSpec": "1.0.0"
},
"author": "Mathias Buus (@mafintosh)",
"license": "MIT",
"_requiredBy": [
"/tar-stream"
],
"_resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
"_spec": "1.0.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Mathias Buus",
"url": "@mafintosh"
},
"browser": "browser.js",
"bugs": {
"url": "https://github.com/mafintosh/fs-constants/issues"
},
"homepage": "https://github.com/mafintosh/fs-constants"
"dependencies": {},
"description": "Require constants across node and the browser",
"devDependencies": {},
"homepage": "https://github.com/mafintosh/fs-constants",
"license": "MIT",
"main": "index.js",
"name": "fs-constants",
"repository": {
"type": "git",
"url": "git+https://github.com/mafintosh/fs-constants.git"
},
"version": "1.0.0"
}

View File

@@ -1,15 +1,64 @@
{
"name": "fs-extra",
"version": "10.1.0",
"_args": [
[
"fs-extra@10.1.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_from": "fs-extra@10.1.0",
"_id": "fs-extra@10.1.0",
"_inBundle": false,
"_integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
"_location": "/fs-extra",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "fs-extra@10.1.0",
"name": "fs-extra",
"escapedName": "fs-extra",
"rawSpec": "10.1.0",
"saveSpec": null,
"fetchSpec": "10.1.0"
},
"_requiredBy": [
"/"
],
"_resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
"_spec": "10.1.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "JP Richardson",
"email": "jprichardson@gmail.com"
},
"bugs": {
"url": "https://github.com/jprichardson/node-fs-extra/issues"
},
"dependencies": {
"graceful-fs": "^4.2.0",
"jsonfile": "^6.0.1",
"universalify": "^2.0.0"
},
"description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as recursive mkdir, copy, and remove.",
"devDependencies": {
"at-least-node": "^1.0.0",
"klaw": "^2.1.1",
"klaw-sync": "^3.0.2",
"minimist": "^1.1.1",
"mocha": "^5.0.5",
"nyc": "^15.0.0",
"proxyquire": "^2.0.1",
"read-dir-files": "^0.1.1",
"standard": "^16.0.3"
},
"engines": {
"node": ">=12"
},
"files": [
"lib/",
"!lib/**/__tests__/"
],
"homepage": "https://github.com/jprichardson/node-fs-extra",
"repository": {
"type": "git",
"url": "https://github.com/jprichardson/node-fs-extra"
},
"keywords": [
"fs",
"file",
@@ -34,34 +83,19 @@
"move",
"promise"
],
"author": "JP Richardson <jprichardson@gmail.com>",
"license": "MIT",
"dependencies": {
"graceful-fs": "^4.2.0",
"jsonfile": "^6.0.1",
"universalify": "^2.0.0"
},
"devDependencies": {
"at-least-node": "^1.0.0",
"klaw": "^2.1.1",
"klaw-sync": "^3.0.2",
"minimist": "^1.1.1",
"mocha": "^5.0.5",
"nyc": "^15.0.0",
"proxyquire": "^2.0.1",
"read-dir-files": "^0.1.1",
"standard": "^16.0.3"
},
"main": "./lib/index.js",
"files": [
"lib/",
"!lib/**/__tests__/"
],
"name": "fs-extra",
"repository": {
"type": "git",
"url": "git+https://github.com/jprichardson/node-fs-extra.git"
},
"scripts": {
"lint": "standard",
"test-find": "find ./lib/**/__tests__ -name *.test.js | xargs mocha",
"test": "npm run lint && npm run unit",
"test-find": "find ./lib/**/__tests__ -name *.test.js | xargs mocha",
"unit": "nyc node test.js"
},
"sideEffects": false
"sideEffects": false,
"version": "10.1.0"
}

View File

@@ -1,26 +1,63 @@
{
"name": "fs.realpath",
"version": "1.0.0",
"description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails",
"main": "index.js",
"_args": [
[
"fs.realpath@1.0.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "fs.realpath@1.0.0",
"_id": "fs.realpath@1.0.0",
"_inBundle": false,
"_integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
"_location": "/fs.realpath",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "fs.realpath@1.0.0",
"name": "fs.realpath",
"escapedName": "fs.realpath",
"rawSpec": "1.0.0",
"saveSpec": null,
"fetchSpec": "1.0.0"
},
"_requiredBy": [
"/glob"
],
"_resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"_spec": "1.0.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me/"
},
"bugs": {
"url": "https://github.com/isaacs/fs.realpath/issues"
},
"dependencies": {},
"description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails",
"devDependencies": {},
"scripts": {
"test": "tap test/*.js --cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isaacs/fs.realpath.git"
},
"files": [
"old.js",
"index.js"
],
"homepage": "https://github.com/isaacs/fs.realpath#readme",
"keywords": [
"realpath",
"fs",
"polyfill"
],
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"license": "ISC",
"files": [
"old.js",
"index.js"
]
"main": "index.js",
"name": "fs.realpath",
"repository": {
"type": "git",
"url": "git+https://github.com/isaacs/fs.realpath.git"
},
"scripts": {
"test": "tap test/*.js --cov"
},
"version": "1.0.0"
}

View File

@@ -6,7 +6,10 @@ case `uname` in
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../rimraf/bin.js" "$@"
"$basedir/node" "$basedir/../rimraf/bin.js" "$@"
ret=$?
else
exec node "$basedir/../rimraf/bin.js" "$@"
node "$basedir/../rimraf/bin.js" "$@"
ret=$?
fi
exit $ret

View File

@@ -1,9 +1,4 @@
@ECHO off
GOTO start
:find_dp0
SET dp0=%~dp0
EXIT /b
:start
SETLOCAL
CALL :find_dp0
@@ -14,4 +9,9 @@ IF EXIST "%dp0%\node.exe" (
SET PATHEXT=%PATHEXT:;.JS;=;%
)
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\rimraf\bin.js" %*
"%_prog%" "%dp0%\..\rimraf\bin.js" %*
ENDLOCAL
EXIT /b %errorlevel%
:find_dp0
SET dp0=%~dp0
EXIT /b

View File

@@ -9,20 +9,10 @@ if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
}
$ret=0
if (Test-Path "$basedir/node$exe") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../rimraf/bin.js" $args
} else {
& "$basedir/node$exe" "$basedir/../rimraf/bin.js" $args
}
& "$basedir/node$exe" "$basedir/../rimraf/bin.js" $args
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../rimraf/bin.js" $args
} else {
& "node$exe" "$basedir/../rimraf/bin.js" $args
}
& "node$exe" "$basedir/../rimraf/bin.js" $args
$ret=$LASTEXITCODE
}
exit $ret

View File

@@ -1,29 +1,71 @@
{
"name": "rimraf",
"version": "2.7.1",
"main": "rimraf.js",
"description": "A deep deletion module for node (like `rm -rf`)",
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"license": "ISC",
"repository": "git://github.com/isaacs/rimraf.git",
"scripts": {
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "git push origin --all; git push origin --tags",
"test": "tap test/*.js"
"_args": [
[
"rimraf@2.7.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "rimraf@2.7.1",
"_id": "rimraf@2.7.1",
"_inBundle": false,
"_integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
"_location": "/fstream/rimraf",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "rimraf@2.7.1",
"name": "rimraf",
"escapedName": "rimraf",
"rawSpec": "2.7.1",
"saveSpec": null,
"fetchSpec": "2.7.1"
},
"_requiredBy": [
"/fstream"
],
"_resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
"_spec": "2.7.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me/"
},
"bin": {
"rimraf": "bin.js"
},
"bugs": {
"url": "https://github.com/isaacs/rimraf/issues"
},
"bin": "./bin.js",
"dependencies": {
"glob": "^7.1.3"
},
"description": "A deep deletion module for node (like `rm -rf`)",
"devDependencies": {
"mkdirp": "^0.5.1",
"tap": "^12.1.1"
},
"files": [
"LICENSE",
"README.md",
"bin.js",
"rimraf.js"
],
"devDependencies": {
"mkdirp": "^0.5.1",
"tap": "^12.1.1"
}
"homepage": "https://github.com/isaacs/rimraf#readme",
"license": "ISC",
"main": "rimraf.js",
"name": "rimraf",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/rimraf.git"
},
"scripts": {
"postpublish": "git push origin --all; git push origin --tags",
"postversion": "npm publish",
"preversion": "npm test",
"test": "tap test/*.js"
},
"version": "2.7.1"
}

View File

@@ -1,15 +1,42 @@
{
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"name": "fstream",
"description": "Advanced file system stream things",
"version": "1.0.12",
"repository": {
"type": "git",
"url": "https://github.com/npm/fstream.git"
"_args": [
[
"fstream@1.0.12",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "fstream@1.0.12",
"_id": "fstream@1.0.12",
"_inBundle": false,
"_integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==",
"_location": "/fstream",
"_phantomChildren": {
"glob": "7.2.0"
},
"main": "fstream.js",
"engines": {
"node": ">=0.6"
"_requested": {
"type": "version",
"registry": true,
"raw": "fstream@1.0.12",
"name": "fstream",
"escapedName": "fstream",
"rawSpec": "1.0.12",
"saveSpec": null,
"fetchSpec": "1.0.12"
},
"_requiredBy": [
"/unzipper"
],
"_resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz",
"_spec": "1.0.12",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me/"
},
"bugs": {
"url": "https://github.com/npm/fstream/issues"
},
"dependencies": {
"graceful-fs": "^4.1.2",
@@ -17,12 +44,24 @@
"mkdirp": ">=0.5 0",
"rimraf": "2"
},
"description": "Advanced file system stream things",
"devDependencies": {
"standard": "^4.0.0",
"tap": "^1.2.0"
},
"engines": {
"node": ">=0.6"
},
"homepage": "https://github.com/npm/fstream#readme",
"license": "ISC",
"main": "fstream.js",
"name": "fstream",
"repository": {
"type": "git",
"url": "git+https://github.com/npm/fstream.git"
},
"scripts": {
"test": "standard && tap examples/*.js"
},
"license": "ISC"
"version": "1.0.12"
}

View File

@@ -1,20 +1,42 @@
{
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"name": "glob",
"description": "a little globber",
"version": "7.2.0",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/node-glob.git"
},
"main": "glob.js",
"files": [
"glob.js",
"sync.js",
"common.js"
"_args": [
[
"glob@7.2.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"engines": {
"node": "*"
"_development": true,
"_from": "glob@7.2.0",
"_id": "glob@7.2.0",
"_inBundle": false,
"_integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==",
"_location": "/glob",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "glob@7.2.0",
"name": "glob",
"escapedName": "glob",
"rawSpec": "7.2.0",
"saveSpec": null,
"fetchSpec": "7.2.0"
},
"_requiredBy": [
"/archiver-utils",
"/fstream/rimraf",
"/rimraf"
],
"_resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz",
"_spec": "7.2.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me/"
},
"bugs": {
"url": "https://github.com/isaacs/node-glob/issues"
},
"dependencies": {
"fs.realpath": "^1.0.0",
@@ -24,6 +46,7 @@
"once": "^1.3.0",
"path-is-absolute": "^1.0.0"
},
"description": "a little globber",
"devDependencies": {
"memfs": "^3.2.0",
"mkdirp": "0",
@@ -31,22 +54,38 @@
"tap": "^15.0.6",
"tick": "0.0.6"
},
"engines": {
"node": "*"
},
"files": [
"glob.js",
"sync.js",
"common.js"
],
"funding": {
"url": "https://github.com/sponsors/isaacs"
},
"homepage": "https://github.com/isaacs/node-glob#readme",
"license": "ISC",
"main": "glob.js",
"name": "glob",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/node-glob.git"
},
"scripts": {
"bench": "bash benchmark.sh",
"benchclean": "node benchclean.js",
"prepublish": "npm run benchclean",
"prof": "bash prof.sh && cat profile.txt",
"profclean": "rm -f v8.log profile.txt",
"test": "tap",
"test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js"
},
"tap": {
"before": "test/00-setup.js",
"after": "test/zz-cleanup.js",
"jobs": 1
},
"scripts": {
"prepublish": "npm run benchclean",
"profclean": "rm -f v8.log profile.txt",
"test": "tap",
"test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js",
"bench": "bash benchmark.sh",
"prof": "bash prof.sh && cat profile.txt",
"benchclean": "node benchclean.js"
},
"license": "ISC",
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
"version": "7.2.0"
}

View File

@@ -1,22 +1,57 @@
{
"name": "graceful-fs",
"description": "A drop-in replacement for fs, making various improvements.",
"version": "4.2.10",
"repository": {
"type": "git",
"url": "https://github.com/isaacs/node-graceful-fs"
"_args": [
[
"graceful-fs@4.2.10",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_from": "graceful-fs@4.2.10",
"_id": "graceful-fs@4.2.10",
"_inBundle": false,
"_integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==",
"_location": "/graceful-fs",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "graceful-fs@4.2.10",
"name": "graceful-fs",
"escapedName": "graceful-fs",
"rawSpec": "4.2.10",
"saveSpec": null,
"fetchSpec": "4.2.10"
},
"_requiredBy": [
"/archiver-utils",
"/fs-extra",
"/fstream",
"/jsonfile",
"/unzipper"
],
"_resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz",
"_spec": "4.2.10",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"bugs": {
"url": "https://github.com/isaacs/node-graceful-fs/issues"
},
"description": "A drop-in replacement for fs, making various improvements.",
"devDependencies": {
"import-fresh": "^2.0.0",
"mkdirp": "^0.5.0",
"rimraf": "^2.2.8",
"tap": "^12.7.0"
},
"main": "graceful-fs.js",
"directories": {
"test": "test"
},
"scripts": {
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "git push origin --follow-tags",
"test": "nyc --silent node test.js | tap -c -",
"posttest": "nyc report"
},
"files": [
"fs.js",
"graceful-fs.js",
"legacy-streams.js",
"polyfills.js",
"clone.js"
],
"homepage": "https://github.com/isaacs/node-graceful-fs#readme",
"keywords": [
"fs",
"module",
@@ -34,17 +69,18 @@
"EACCESS"
],
"license": "ISC",
"devDependencies": {
"import-fresh": "^2.0.0",
"mkdirp": "^0.5.0",
"rimraf": "^2.2.8",
"tap": "^12.7.0"
"main": "graceful-fs.js",
"name": "graceful-fs",
"repository": {
"type": "git",
"url": "git+https://github.com/isaacs/node-graceful-fs.git"
},
"files": [
"fs.js",
"graceful-fs.js",
"legacy-streams.js",
"polyfills.js",
"clone.js"
]
"scripts": {
"postpublish": "git push origin --follow-tags",
"posttest": "nyc report",
"postversion": "npm publish",
"preversion": "npm test",
"test": "nyc --silent node test.js | tap -c -"
},
"version": "4.2.10"
}

View File

@@ -1,40 +1,53 @@
{
"name": "ieee754",
"description": "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object",
"version": "1.2.1",
"_args": [
[
"ieee754@1.2.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "ieee754@1.2.1",
"_id": "ieee754@1.2.1",
"_inBundle": false,
"_integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
"_location": "/ieee754",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "ieee754@1.2.1",
"name": "ieee754",
"escapedName": "ieee754",
"rawSpec": "1.2.1",
"saveSpec": null,
"fetchSpec": "1.2.1"
},
"_requiredBy": [
"/buffer"
],
"_resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
"_spec": "1.2.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
"url": "https://feross.org"
},
"bugs": {
"url": "https://github.com/feross/ieee754/issues"
},
"contributors": [
"Romain Beauxis <toots@rastageeks.org>"
{
"name": "Romain Beauxis",
"email": "toots@rastageeks.org"
}
],
"description": "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object",
"devDependencies": {
"airtap": "^3.0.0",
"standard": "*",
"tape": "^5.0.1"
},
"keywords": [
"IEEE 754",
"buffer",
"convert",
"floating point",
"ieee754"
],
"license": "BSD-3-Clause",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/feross/ieee754.git"
},
"scripts": {
"test": "standard && npm run test-node && npm run test-browser",
"test-browser": "airtap -- test/*.js",
"test-browser-local": "airtap --local -- test/*.js",
"test-node": "tape test/*.js"
},
"funding": [
{
"type": "github",
@@ -48,5 +61,28 @@
"type": "consulting",
"url": "https://feross.org/support"
}
]
],
"homepage": "https://github.com/feross/ieee754#readme",
"keywords": [
"IEEE 754",
"buffer",
"convert",
"floating point",
"ieee754"
],
"license": "BSD-3-Clause",
"main": "index.js",
"name": "ieee754",
"repository": {
"type": "git",
"url": "git://github.com/feross/ieee754.git"
},
"scripts": {
"test": "standard && npm run test-node && npm run test-browser",
"test-browser": "airtap -- test/*.js",
"test-browser-local": "airtap --local -- test/*.js",
"test-node": "tape test/*.js"
},
"types": "index.d.ts",
"version": "1.2.1"
}

View File

@@ -1,34 +1,59 @@
{
"name": "immediate",
"version": "3.0.6",
"description": "A cross browser microtask library",
"contributors": [
"Domenic Denicola <domenic@domenicdenicola.com> (http://domenicdenicola.com)",
"Donavon West <github@donavon.com> (http://donavon.com)",
"Yaffle",
"Calvin Metcalf <calvin.metcalf@gmail.com>"
"_args": [
[
"immediate@3.0.6",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/calvinmetcalf/immediate.git"
"_development": true,
"_from": "immediate@3.0.6",
"_id": "immediate@3.0.6",
"_inBundle": false,
"_integrity": "sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=",
"_location": "/immediate",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "immediate@3.0.6",
"name": "immediate",
"escapedName": "immediate",
"rawSpec": "3.0.6",
"saveSpec": null,
"fetchSpec": "3.0.6"
},
"files": [
"lib",
"dist"
"_requiredBy": [
"/lie"
],
"bugs": "https://github.com/calvinmetcalf/immediate/issues",
"main": "lib/index.js",
"scripts": {
"build": "npm run build-node && npm run build-js && npm run uglify",
"build-node": "browserify-transform-cli inline-process-browser unreachable-branch-transform < ./lib/index.js > ./lib/browser.js",
"uglify": "uglifyjs dist/immediate.js -mc > dist/immediate.min.js",
"build-js": "browserify -s immediate ./lib/browser.js | derequire > dist/immediate.js",
"test": "jshint lib/*.js && node test/tests.js"
},
"_resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
"_spec": "3.0.6",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"browser": {
"./lib/index.js": "./lib/browser.js"
},
"bugs": {
"url": "https://github.com/calvinmetcalf/immediate/issues"
},
"contributors": [
{
"name": "Domenic Denicola",
"email": "domenic@domenicdenicola.com",
"url": "http://domenicdenicola.com"
},
{
"name": "Donavon West",
"email": "github@donavon.com",
"url": "http://donavon.com"
},
{
"name": "Yaffle"
},
{
"name": "Calvin Metcalf",
"email": "calvin.metcalf@gmail.com"
}
],
"description": "A cross browser microtask library",
"devDependencies": {
"browserify": "^13.0.0",
"browserify-transform-cli": "^1.1.1",
@@ -38,5 +63,25 @@
"tape": "^4.0.0",
"uglify-js": "^2.4.13",
"unreachable-branch-transform": "^0.5.1"
}
},
"files": [
"lib",
"dist"
],
"homepage": "https://github.com/calvinmetcalf/immediate#readme",
"license": "MIT",
"main": "lib/index.js",
"name": "immediate",
"repository": {
"type": "git",
"url": "git://github.com/calvinmetcalf/immediate.git"
},
"scripts": {
"build": "npm run build-node && npm run build-js && npm run uglify",
"build-js": "browserify -s immediate ./lib/browser.js | derequire > dist/immediate.js",
"build-node": "browserify-transform-cli inline-process-browser unreachable-branch-transform < ./lib/index.js > ./lib/browser.js",
"test": "jshint lib/*.js && node test/tests.js",
"uglify": "uglifyjs dist/immediate.js -mc > dist/immediate.min.js"
},
"version": "3.0.6"
}

View File

@@ -1,29 +1,62 @@
{
"name": "inflight",
"version": "1.0.6",
"description": "Add callbacks to requests in flight to avoid async duplication",
"main": "inflight.js",
"files": [
"inflight.js"
"_args": [
[
"inflight@1.0.6",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "inflight@1.0.6",
"_id": "inflight@1.0.6",
"_inBundle": false,
"_integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
"_location": "/inflight",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "inflight@1.0.6",
"name": "inflight",
"escapedName": "inflight",
"rawSpec": "1.0.6",
"saveSpec": null,
"fetchSpec": "1.0.6"
},
"_requiredBy": [
"/glob"
],
"_resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
"_spec": "1.0.6",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me/"
},
"bugs": {
"url": "https://github.com/isaacs/inflight/issues"
},
"dependencies": {
"once": "^1.3.0",
"wrappy": "1"
},
"description": "Add callbacks to requests in flight to avoid async duplication",
"devDependencies": {
"tap": "^7.1.2"
},
"files": [
"inflight.js"
],
"homepage": "https://github.com/isaacs/inflight",
"license": "ISC",
"main": "inflight.js",
"name": "inflight",
"repository": {
"type": "git",
"url": "git+https://github.com/npm/inflight.git"
},
"scripts": {
"test": "tap test.js --100"
},
"repository": {
"type": "git",
"url": "https://github.com/npm/inflight.git"
},
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"bugs": {
"url": "https://github.com/isaacs/inflight/issues"
},
"homepage": "https://github.com/isaacs/inflight",
"license": "ISC"
"version": "1.0.6"
}

View File

@@ -1,7 +1,55 @@
{
"name": "inherits",
"_args": [
[
"inherits@2.0.4",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "inherits@2.0.4",
"_id": "inherits@2.0.4",
"_inBundle": false,
"_integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
"_location": "/inherits",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "inherits@2.0.4",
"name": "inherits",
"escapedName": "inherits",
"rawSpec": "2.0.4",
"saveSpec": null,
"fetchSpec": "2.0.4"
},
"_requiredBy": [
"/archiver-utils/readable-stream",
"/bl",
"/duplexer2/readable-stream",
"/fstream",
"/glob",
"/jszip/readable-stream",
"/lazystream/readable-stream",
"/readable-stream",
"/tar-stream",
"/unzipper/readable-stream"
],
"_resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
"_spec": "2.0.4",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"browser": "./inherits_browser.js",
"bugs": {
"url": "https://github.com/isaacs/inherits/issues"
},
"description": "Browser-friendly inheritance fully compatible with standard node.js inherits()",
"version": "2.0.4",
"devDependencies": {
"tap": "^14.2.4"
},
"files": [
"inherits.js",
"inherits_browser.js"
],
"homepage": "https://github.com/isaacs/inherits#readme",
"keywords": [
"inheritance",
"class",
@@ -12,18 +60,15 @@
"browser",
"browserify"
],
"main": "./inherits.js",
"browser": "./inherits_browser.js",
"repository": "git://github.com/isaacs/inherits",
"license": "ISC",
"main": "./inherits.js",
"name": "inherits",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/inherits.git"
},
"scripts": {
"test": "tap"
},
"devDependencies": {
"tap": "^14.2.4"
},
"files": [
"inherits.js",
"inherits_browser.js"
]
"version": "2.0.4"
}

View File

@@ -1,28 +1,66 @@
{
"name": "isarray",
"description": "Array#isArray for older browsers",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git://github.com/juliangruber/isarray.git"
},
"homepage": "https://github.com/juliangruber/isarray",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"tape": "~2.13.4"
},
"keywords": [
"browser",
"isarray",
"array"
"_args": [
[
"isarray@1.0.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "isarray@1.0.0",
"_id": "isarray@1.0.0",
"_inBundle": false,
"_integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
"_location": "/isarray",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "isarray@1.0.0",
"name": "isarray",
"escapedName": "isarray",
"rawSpec": "1.0.0",
"saveSpec": null,
"fetchSpec": "1.0.0"
},
"_requiredBy": [
"/archiver-utils/readable-stream",
"/duplexer2/readable-stream",
"/jszip/readable-stream",
"/lazystream/readable-stream",
"/unzipper/readable-stream"
],
"_resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
"_spec": "1.0.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Julian Gruber",
"email": "mail@juliangruber.com",
"url": "http://juliangruber.com"
},
"bugs": {
"url": "https://github.com/juliangruber/isarray/issues"
},
"dependencies": {},
"description": "Array#isArray for older browsers",
"devDependencies": {
"tape": "~2.13.4"
},
"homepage": "https://github.com/juliangruber/isarray",
"keywords": [
"browser",
"isarray",
"array"
],
"license": "MIT",
"main": "index.js",
"name": "isarray",
"repository": {
"type": "git",
"url": "git://github.com/juliangruber/isarray.git"
},
"scripts": {
"test": "tape test.js"
},
"testling": {
"files": "test.js",
"browsers": [
@@ -39,7 +77,5 @@
"android-browser/4.2..latest"
]
},
"scripts": {
"test": "tape test.js"
}
"version": "1.0.0"
}

View File

@@ -1,11 +1,54 @@
{
"name": "jsonfile",
"version": "6.1.0",
"description": "Easily read/write JSON files.",
"repository": {
"type": "git",
"url": "git@github.com:jprichardson/node-jsonfile.git"
"_args": [
[
"jsonfile@6.1.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_from": "jsonfile@6.1.0",
"_id": "jsonfile@6.1.0",
"_inBundle": false,
"_integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
"_location": "/jsonfile",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "jsonfile@6.1.0",
"name": "jsonfile",
"escapedName": "jsonfile",
"rawSpec": "6.1.0",
"saveSpec": null,
"fetchSpec": "6.1.0"
},
"_requiredBy": [
"/fs-extra"
],
"_resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
"_spec": "6.1.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "JP Richardson",
"email": "jprichardson@gmail.com"
},
"bugs": {
"url": "https://github.com/jprichardson/node-jsonfile/issues"
},
"dependencies": {
"graceful-fs": "^4.1.6",
"universalify": "^2.0.0"
},
"description": "Easily read/write JSON files.",
"devDependencies": {
"mocha": "^8.2.0",
"rimraf": "^2.4.0",
"standard": "^16.0.1"
},
"files": [
"index.js",
"utils.js"
],
"homepage": "https://github.com/jprichardson/node-jsonfile#readme",
"keywords": [
"read",
"write",
@@ -14,27 +57,20 @@
"fs",
"fs-extra"
],
"author": "JP Richardson <jprichardson@gmail.com>",
"license": "MIT",
"dependencies": {
"universalify": "^2.0.0"
},
"main": "index.js",
"name": "jsonfile",
"optionalDependencies": {
"graceful-fs": "^4.1.6"
},
"devDependencies": {
"mocha": "^8.2.0",
"rimraf": "^2.4.0",
"standard": "^16.0.1"
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jprichardson/node-jsonfile.git"
},
"main": "index.js",
"files": [
"index.js",
"utils.js"
],
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "mocha"
}
},
"version": "6.1.0"
}

View File

@@ -1,8 +1,43 @@
{
"name": "readable-stream",
"version": "2.3.7",
"description": "Streams3, a user-land copy of the stream library from Node.js",
"main": "readable.js",
"_args": [
[
"readable-stream@2.3.7",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "readable-stream@2.3.7",
"_id": "readable-stream@2.3.7",
"_inBundle": false,
"_integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
"_location": "/jszip/readable-stream",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "readable-stream@2.3.7",
"name": "readable-stream",
"escapedName": "readable-stream",
"rawSpec": "2.3.7",
"saveSpec": null,
"fetchSpec": "2.3.7"
},
"_requiredBy": [
"/jszip"
],
"_resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
"_spec": "2.3.7",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"browser": {
"util": false,
"./readable.js": "./readable-browser.js",
"./writable.js": "./writable-browser.js",
"./duplex.js": "./duplex-browser.js",
"./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js"
},
"bugs": {
"url": "https://github.com/nodejs/readable-stream/issues"
},
"dependencies": {
"core-util-is": "~1.0.0",
"inherits": "~2.0.3",
@@ -12,6 +47,7 @@
"string_decoder": "~1.1.1",
"util-deprecate": "~1.0.1"
},
"description": "Streams3, a user-land copy of the stream library from Node.js",
"devDependencies": {
"assert": "^1.4.0",
"babel-polyfill": "^6.9.1",
@@ -21,32 +57,29 @@
"tap": "^0.7.0",
"tape": "^4.8.0"
},
"scripts": {
"test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js",
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js",
"cover": "nyc npm test",
"report": "nyc report --reporter=lcov"
},
"repository": {
"type": "git",
"url": "git://github.com/nodejs/readable-stream"
},
"homepage": "https://github.com/nodejs/readable-stream#readme",
"keywords": [
"readable",
"stream",
"pipe"
],
"browser": {
"util": false,
"./readable.js": "./readable-browser.js",
"./writable.js": "./writable-browser.js",
"./duplex.js": "./duplex-browser.js",
"./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js"
},
"license": "MIT",
"main": "readable.js",
"name": "readable-stream",
"nyc": {
"include": [
"lib/**.js"
]
},
"license": "MIT"
"repository": {
"type": "git",
"url": "git://github.com/nodejs/readable-stream.git"
},
"scripts": {
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js",
"cover": "nyc npm test",
"report": "nyc report --reporter=lcov",
"test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js"
},
"version": "2.3.7"
}

View File

@@ -1,7 +1,34 @@
{
"name": "safe-buffer",
"description": "Safer Node.js Buffer API",
"version": "5.1.2",
"_args": [
[
"safe-buffer@5.1.2",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "safe-buffer@5.1.2",
"_id": "safe-buffer@5.1.2",
"_inBundle": false,
"_integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
"_location": "/jszip/safe-buffer",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "safe-buffer@5.1.2",
"name": "safe-buffer",
"escapedName": "safe-buffer",
"rawSpec": "5.1.2",
"saveSpec": null,
"fetchSpec": "5.1.2"
},
"_requiredBy": [
"/jszip/readable-stream",
"/jszip/string_decoder"
],
"_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
"_spec": "5.1.2",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
@@ -10,6 +37,7 @@
"bugs": {
"url": "https://github.com/feross/safe-buffer/issues"
},
"description": "Safer Node.js Buffer API",
"devDependencies": {
"standard": "*",
"tape": "^4.0.0"
@@ -26,12 +54,14 @@
],
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"name": "safe-buffer",
"repository": {
"type": "git",
"url": "git://github.com/feross/safe-buffer.git"
},
"scripts": {
"test": "standard && tape test/*.js"
}
},
"types": "index.d.ts",
"version": "5.1.2"
}

View File

@@ -1,25 +1,46 @@
{
"name": "string_decoder",
"version": "1.1.1",
"description": "The string_decoder module from Node core",
"main": "lib/string_decoder.js",
"_args": [
[
"string_decoder@1.1.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "string_decoder@1.1.1",
"_id": "string_decoder@1.1.1",
"_inBundle": false,
"_integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
"_location": "/jszip/string_decoder",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "string_decoder@1.1.1",
"name": "string_decoder",
"escapedName": "string_decoder",
"rawSpec": "1.1.1",
"saveSpec": null,
"fetchSpec": "1.1.1"
},
"_requiredBy": [
"/jszip/readable-stream"
],
"_resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
"_spec": "1.1.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"bugs": {
"url": "https://github.com/nodejs/string_decoder/issues"
},
"dependencies": {
"safe-buffer": "~5.1.0"
},
"description": "The string_decoder module from Node core",
"devDependencies": {
"babel-polyfill": "^6.23.0",
"core-util-is": "^1.0.2",
"inherits": "^2.0.3",
"tap": "~0.4.8"
},
"scripts": {
"test": "tap test/parallel/*.js && node test/verify-dependencies",
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js"
},
"repository": {
"type": "git",
"url": "git://github.com/nodejs/string_decoder.git"
},
"homepage": "https://github.com/nodejs/string_decoder",
"keywords": [
"string",
@@ -27,5 +48,16 @@
"browser",
"browserify"
],
"license": "MIT"
"license": "MIT",
"main": "lib/string_decoder.js",
"name": "string_decoder",
"repository": {
"type": "git",
"url": "git://github.com/nodejs/string_decoder.git"
},
"scripts": {
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js",
"test": "tap test/parallel/*.js && node test/verify-dependencies"
},
"version": "1.1.1"
}

View File

@@ -1,13 +1,49 @@
{
"name": "jszip",
"version": "3.9.1",
"author": "Stuart Knightley <stuart@stuartk.com>",
"description": "Create, read and edit .zip files with JavaScript http://stuartk.com/jszip",
"scripts": {
"test": "npm run test-node && npm run test-browser && tsc",
"test-node": "qunit --require ./test/helpers/test-utils.js --require ./test/helpers/node-test-utils.js test/asserts/",
"test-browser": "grunt build && node test/run.js",
"lint": "grunt jshint"
"_args": [
[
"jszip@3.9.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "jszip@3.9.1",
"_id": "jszip@3.9.1",
"_inBundle": false,
"_integrity": "sha512-H9A60xPqJ1CuC4Ka6qxzXZeU8aNmgOeP5IFqwJbQQwtu2EUYxota3LdsiZWplF7Wgd9tkAd0mdu36nceSaPuYw==",
"_location": "/jszip",
"_phantomChildren": {
"core-util-is": "1.0.3",
"inherits": "2.0.4",
"isarray": "1.0.0",
"process-nextick-args": "2.0.1",
"util-deprecate": "1.0.2"
},
"_requested": {
"type": "version",
"registry": true,
"raw": "jszip@3.9.1",
"name": "jszip",
"escapedName": "jszip",
"rawSpec": "3.9.1",
"saveSpec": null,
"fetchSpec": "3.9.1"
},
"_requiredBy": [
"/exceljs"
],
"_resolved": "https://registry.npmjs.org/jszip/-/jszip-3.9.1.tgz",
"_spec": "3.9.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Stuart Knightley",
"email": "stuart@stuartk.com"
},
"browser": {
"./lib/index": "./dist/jszip.min.js",
"readable-stream": "./lib/readable-stream-browser.js"
},
"bugs": {
"url": "https://github.com/Stuk/jszip/issues"
},
"contributors": [
{
@@ -23,21 +59,13 @@
"name": "yiminghe"
}
],
"main": "./lib/index",
"browser": {
"./lib/index": "./dist/jszip.min.js",
"readable-stream": "./lib/readable-stream-browser.js"
"dependencies": {
"lie": "~3.3.0",
"pako": "~1.0.2",
"readable-stream": "~2.3.6",
"set-immediate-shim": "~1.0.1"
},
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Stuk/jszip.git"
},
"keywords": [
"zip",
"deflate",
"inflate"
],
"description": "Create, read and edit .zip files with JavaScript http://stuartk.com/jszip",
"devDependencies": {
"browserify": "~13.0.0",
"grunt": "~0.4.1",
@@ -54,11 +82,25 @@
"tmp": "0.0.28",
"typescript": "^4.6.3"
},
"dependencies": {
"lie": "~3.3.0",
"pako": "~1.0.2",
"readable-stream": "~2.3.6",
"set-immediate-shim": "~1.0.1"
"homepage": "https://github.com/Stuk/jszip#readme",
"keywords": [
"zip",
"deflate",
"inflate"
],
"license": "(MIT OR GPL-3.0-or-later)",
"main": "./lib/index",
"name": "jszip",
"repository": {
"type": "git",
"url": "git+https://github.com/Stuk/jszip.git"
},
"license": "(MIT OR GPL-3.0-or-later)"
"scripts": {
"lint": "grunt jshint",
"test": "npm run test-node && npm run test-browser && tsc",
"test-browser": "grunt build && node test/run.js",
"test-node": "qunit --require ./test/helpers/test-utils.js --require ./test/helpers/node-test-utils.js test/asserts/"
},
"types": "./index.d.ts",
"version": "3.9.1"
}

View File

@@ -1,8 +1,43 @@
{
"name": "readable-stream",
"version": "2.3.7",
"description": "Streams3, a user-land copy of the stream library from Node.js",
"main": "readable.js",
"_args": [
[
"readable-stream@2.3.7",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "readable-stream@2.3.7",
"_id": "readable-stream@2.3.7",
"_inBundle": false,
"_integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
"_location": "/lazystream/readable-stream",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "readable-stream@2.3.7",
"name": "readable-stream",
"escapedName": "readable-stream",
"rawSpec": "2.3.7",
"saveSpec": null,
"fetchSpec": "2.3.7"
},
"_requiredBy": [
"/lazystream"
],
"_resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
"_spec": "2.3.7",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"browser": {
"util": false,
"./readable.js": "./readable-browser.js",
"./writable.js": "./writable-browser.js",
"./duplex.js": "./duplex-browser.js",
"./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js"
},
"bugs": {
"url": "https://github.com/nodejs/readable-stream/issues"
},
"dependencies": {
"core-util-is": "~1.0.0",
"inherits": "~2.0.3",
@@ -12,6 +47,7 @@
"string_decoder": "~1.1.1",
"util-deprecate": "~1.0.1"
},
"description": "Streams3, a user-land copy of the stream library from Node.js",
"devDependencies": {
"assert": "^1.4.0",
"babel-polyfill": "^6.9.1",
@@ -21,32 +57,29 @@
"tap": "^0.7.0",
"tape": "^4.8.0"
},
"scripts": {
"test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js",
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js",
"cover": "nyc npm test",
"report": "nyc report --reporter=lcov"
},
"repository": {
"type": "git",
"url": "git://github.com/nodejs/readable-stream"
},
"homepage": "https://github.com/nodejs/readable-stream#readme",
"keywords": [
"readable",
"stream",
"pipe"
],
"browser": {
"util": false,
"./readable.js": "./readable-browser.js",
"./writable.js": "./writable-browser.js",
"./duplex.js": "./duplex-browser.js",
"./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js"
},
"license": "MIT",
"main": "readable.js",
"name": "readable-stream",
"nyc": {
"include": [
"lib/**.js"
]
},
"license": "MIT"
"repository": {
"type": "git",
"url": "git://github.com/nodejs/readable-stream.git"
},
"scripts": {
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js",
"cover": "nyc npm test",
"report": "nyc report --reporter=lcov",
"test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js"
},
"version": "2.3.7"
}

View File

@@ -1,7 +1,34 @@
{
"name": "safe-buffer",
"description": "Safer Node.js Buffer API",
"version": "5.1.2",
"_args": [
[
"safe-buffer@5.1.2",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "safe-buffer@5.1.2",
"_id": "safe-buffer@5.1.2",
"_inBundle": false,
"_integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
"_location": "/lazystream/safe-buffer",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "safe-buffer@5.1.2",
"name": "safe-buffer",
"escapedName": "safe-buffer",
"rawSpec": "5.1.2",
"saveSpec": null,
"fetchSpec": "5.1.2"
},
"_requiredBy": [
"/lazystream/readable-stream",
"/lazystream/string_decoder"
],
"_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
"_spec": "5.1.2",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
@@ -10,6 +37,7 @@
"bugs": {
"url": "https://github.com/feross/safe-buffer/issues"
},
"description": "Safer Node.js Buffer API",
"devDependencies": {
"standard": "*",
"tape": "^4.0.0"
@@ -26,12 +54,14 @@
],
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"name": "safe-buffer",
"repository": {
"type": "git",
"url": "git://github.com/feross/safe-buffer.git"
},
"scripts": {
"test": "standard && tape test/*.js"
}
},
"types": "index.d.ts",
"version": "5.1.2"
}

View File

@@ -1,25 +1,46 @@
{
"name": "string_decoder",
"version": "1.1.1",
"description": "The string_decoder module from Node core",
"main": "lib/string_decoder.js",
"_args": [
[
"string_decoder@1.1.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "string_decoder@1.1.1",
"_id": "string_decoder@1.1.1",
"_inBundle": false,
"_integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
"_location": "/lazystream/string_decoder",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "string_decoder@1.1.1",
"name": "string_decoder",
"escapedName": "string_decoder",
"rawSpec": "1.1.1",
"saveSpec": null,
"fetchSpec": "1.1.1"
},
"_requiredBy": [
"/lazystream/readable-stream"
],
"_resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
"_spec": "1.1.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"bugs": {
"url": "https://github.com/nodejs/string_decoder/issues"
},
"dependencies": {
"safe-buffer": "~5.1.0"
},
"description": "The string_decoder module from Node core",
"devDependencies": {
"babel-polyfill": "^6.23.0",
"core-util-is": "^1.0.2",
"inherits": "^2.0.3",
"tap": "~0.4.8"
},
"scripts": {
"test": "tap test/parallel/*.js && node test/verify-dependencies",
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js"
},
"repository": {
"type": "git",
"url": "git://github.com/nodejs/string_decoder.git"
},
"homepage": "https://github.com/nodejs/string_decoder",
"keywords": [
"string",
@@ -27,5 +48,16 @@
"browser",
"browserify"
],
"license": "MIT"
"license": "MIT",
"main": "lib/string_decoder.js",
"name": "string_decoder",
"repository": {
"type": "git",
"url": "git://github.com/nodejs/string_decoder.git"
},
"scripts": {
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js",
"test": "tap test/parallel/*.js && node test/verify-dependencies"
},
"version": "1.1.1"
}

View File

@@ -1,46 +1,84 @@
{
"name": "lazystream",
"version": "1.0.1",
"description": "Open Node Streams on demand.",
"homepage": "https://github.com/jpommerening/node-lazystream",
"_args": [
[
"lazystream@1.0.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "lazystream@1.0.1",
"_id": "lazystream@1.0.1",
"_inBundle": false,
"_integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==",
"_location": "/lazystream",
"_phantomChildren": {
"core-util-is": "1.0.3",
"inherits": "2.0.4",
"isarray": "1.0.0",
"process-nextick-args": "2.0.1",
"util-deprecate": "1.0.2"
},
"_requested": {
"type": "version",
"registry": true,
"raw": "lazystream@1.0.1",
"name": "lazystream",
"escapedName": "lazystream",
"rawSpec": "1.0.1",
"saveSpec": null,
"fetchSpec": "1.0.1"
},
"_requiredBy": [
"/archiver-utils"
],
"_resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz",
"_spec": "1.0.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Jonas Pommerening",
"email": "jonas.pommerening@gmail.com",
"url": "https://npmjs.org/~jpommerening"
},
"contributors": [
"Mario Casciaro <mariocasciaro@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/jpommerening/node-lazystream.git"
},
"bugs": {
"url": "https://github.com/jpommerening/node-lazystream/issues"
},
"license": "MIT",
"main": "lib/lazystream.js",
"contributors": [
{
"name": "Mario Casciaro",
"email": "mariocasciaro@gmail.com"
}
],
"dependencies": {
"readable-stream": "^2.0.5"
},
"description": "Open Node Streams on demand.",
"devDependencies": {
"nodeunit": "^0.9.1"
},
"engines": {
"node": ">= 0.6.3"
},
"scripts": {
"test": "nodeunit test/readable_test.js test/writable_test.js test/pipe_test.js test/fs_test.js"
},
"files": [
"lib/lazystream.js",
"test/*.js",
"test/*.md"
],
"dependencies": {
"readable-stream": "^2.0.5"
},
"devDependencies": {
"nodeunit": "^0.9.1"
},
"homepage": "https://github.com/jpommerening/node-lazystream",
"keywords": [
"emfile",
"lazy",
"streams",
"stream"
]
],
"license": "MIT",
"main": "lib/lazystream.js",
"name": "lazystream",
"repository": {
"type": "git",
"url": "git+https://github.com/jpommerening/node-lazystream.git"
},
"scripts": {
"test": "nodeunit test/readable_test.js test/writable_test.js test/pipe_test.js test/fs_test.js"
},
"version": "1.0.1"
}

View File

@@ -1,38 +1,43 @@
{
"name": "lie",
"version": "3.3.0",
"description": "A basic but performant promise implementation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/calvinmetcalf/lie.git"
"_args": [
[
"lie@3.3.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "lie@3.3.0",
"_id": "lie@3.3.0",
"_inBundle": false,
"_integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==",
"_location": "/lie",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "lie@3.3.0",
"name": "lie",
"escapedName": "lie",
"rawSpec": "3.3.0",
"saveSpec": null,
"fetchSpec": "3.3.0"
},
"_requiredBy": [
"/jszip"
],
"_resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz",
"_spec": "3.3.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"browser": {
"./lib/index.js": "./lib/browser.js"
},
"bugs": {
"url": "https://github.com/calvinmetcalf/lie/issues"
},
"keywords": [
"lie",
"promise",
"async",
"aplus"
],
"main": "lib/index.js",
"scripts": {
"pretest": "npm run build",
"test": "npm run jshint && mocha -R nyan ./test/cover.js && tsc --noEmit ./test/types.ts",
"build-node": "copyfiles -f src/index.js lib && browserify-transform-cli inline-process-browser unreachable-branch-transform es3ify < src/index.js > lib/browser.js",
"build-js": "browserify -s Promise -p bundle-collapser/plugin . | derequire > ./dist/lie.js",
"build-min": "uglifyjs ./dist/lie.js -mc > ./dist/lie.min.js",
"build-poly-js": "browserify -p bundle-collapser/plugin ./polyfill.js | derequire > ./dist/lie.polyfill.js",
"build-poly-min": "uglifyjs ./dist/lie.polyfill.js -mc > ./dist/lie.polyfill.min.js",
"build-poly": "npm run build-poly-js && npm run build-poly-min",
"build": "npm run build-node && npm run build-js && npm run build-min && npm run build-poly",
"prebuild": "rimraf lib dist && mkdirp lib dist",
"cover": "istanbul cover _mocha ./test/cover.js -- -R spec && istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 100",
"jshint": "jshint src",
"node": "mocha -R spec ./test/cover.js",
"browser": "browserify test/cover.js > test/browser.js && mocha-phantomjs test/test.html"
"dependencies": {
"immediate": "~3.0.5"
},
"description": "A basic but performant promise implementation",
"devDependencies": {
"browserify": "^13.0.0",
"browserify-transform-cli": "^1.1.1",
@@ -47,23 +52,48 @@
"mocha": "^1.18.0",
"mocha-phantomjs": "~3.5.0",
"phantomjs": "^1.9.9",
"promises-aplus-tests": "calvinmetcalf/promises-tests#phantom",
"promises-aplus-tests": "github:calvinmetcalf/promises-tests#phantom",
"rimraf": "^2.5.4",
"typescript": "^2.7.1",
"uglify-js": "^2.4.13",
"unreachable-branch-transform": "^0.3.0"
},
"dependencies": {
"immediate": "~3.0.5"
},
"browser": {
"./lib/index.js": "./lib/browser.js"
},
"files": [
"lib",
"dist",
"polyfill.js",
"lie.d.ts"
],
"types": "lie.d.ts"
"homepage": "https://github.com/calvinmetcalf/lie#readme",
"keywords": [
"lie",
"promise",
"async",
"aplus"
],
"license": "MIT",
"main": "lib/index.js",
"name": "lie",
"repository": {
"type": "git",
"url": "git+https://github.com/calvinmetcalf/lie.git"
},
"scripts": {
"browser": "browserify test/cover.js > test/browser.js && mocha-phantomjs test/test.html",
"build": "npm run build-node && npm run build-js && npm run build-min && npm run build-poly",
"build-js": "browserify -s Promise -p bundle-collapser/plugin . | derequire > ./dist/lie.js",
"build-min": "uglifyjs ./dist/lie.js -mc > ./dist/lie.min.js",
"build-node": "copyfiles -f src/index.js lib && browserify-transform-cli inline-process-browser unreachable-branch-transform es3ify < src/index.js > lib/browser.js",
"build-poly": "npm run build-poly-js && npm run build-poly-min",
"build-poly-js": "browserify -p bundle-collapser/plugin ./polyfill.js | derequire > ./dist/lie.polyfill.js",
"build-poly-min": "uglifyjs ./dist/lie.polyfill.js -mc > ./dist/lie.polyfill.min.js",
"cover": "istanbul cover _mocha ./test/cover.js -- -R spec && istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 100",
"jshint": "jshint src",
"node": "mocha -R spec ./test/cover.js",
"prebuild": "rimraf lib dist && mkdirp lib dist",
"pretest": "npm run build",
"test": "npm run jshint && mocha -R nyan ./test/cover.js && tsc --noEmit ./test/types.ts"
},
"types": "lie.d.ts",
"version": "3.3.0"
}

View File

@@ -1,8 +1,46 @@
{
"name": "listenercount",
"author": "jden <jason@denizac.org>",
"version": "1.0.1",
"_args": [
[
"listenercount@1.0.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "listenercount@1.0.1",
"_id": "listenercount@1.0.1",
"_inBundle": false,
"_integrity": "sha1-hMinKrWcRyUyFIDJdeZQg0LnCTc=",
"_location": "/listenercount",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "listenercount@1.0.1",
"name": "listenercount",
"escapedName": "listenercount",
"rawSpec": "1.0.1",
"saveSpec": null,
"fetchSpec": "1.0.1"
},
"_requiredBy": [
"/unzipper"
],
"_resolved": "https://registry.npmjs.org/listenercount/-/listenercount-1.0.1.tgz",
"_spec": "1.0.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "jden",
"email": "jason@denizac.org"
},
"bugs": {
"url": "https://github.com/jden/node-listenercount/issues"
},
"description": "backwards compatible version of builtin events.listenercount",
"devDependencies": {
"mochi": "0.3.0",
"standard": "^4.0.1"
},
"homepage": "https://github.com/jden/node-listenercount#readme",
"keywords": [
"eventemitter",
"events",
@@ -13,15 +51,15 @@
"native",
"builtin"
],
"license": "ISC",
"main": "index.js",
"name": "listenercount",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jden/node-listenercount.git"
},
"scripts": {
"test": "standard && mochi"
},
"repository": "git@github.com:jden/node-listenercount.git",
"license": "ISC",
"readmeFilename": "README.md",
"devDependencies": {
"mochi": "0.3.0",
"standard": "^4.0.1"
}
"version": "1.0.1"
}

View File

@@ -1,17 +1,73 @@
{
"name": "lodash.defaults",
"version": "4.2.0",
"_args": [
[
"lodash.defaults@4.2.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "lodash.defaults@4.2.0",
"_id": "lodash.defaults@4.2.0",
"_inBundle": false,
"_integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=",
"_location": "/lodash.defaults",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "lodash.defaults@4.2.0",
"name": "lodash.defaults",
"escapedName": "lodash.defaults",
"rawSpec": "4.2.0",
"saveSpec": null,
"fetchSpec": "4.2.0"
},
"_requiredBy": [
"/archiver-utils"
],
"_resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz",
"_spec": "4.2.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"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/"
}
],
"description": "The lodash method `_.defaults` exported as a module.",
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
"license": "MIT",
"keywords": "lodash-modularized, defaults",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"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/)"
"keywords": [
"lodash-modularized",
"defaults"
],
"repository": "lodash/lodash",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" }
"license": "MIT",
"name": "lodash.defaults",
"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.2.0"
}

View File

@@ -1,17 +1,73 @@
{
"name": "lodash.difference",
"version": "4.5.0",
"_args": [
[
"lodash.difference@4.5.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "lodash.difference@4.5.0",
"_id": "lodash.difference@4.5.0",
"_inBundle": false,
"_integrity": "sha1-nMtOUF1Ia5FlE0V3KIWi3yf9AXw=",
"_location": "/lodash.difference",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "lodash.difference@4.5.0",
"name": "lodash.difference",
"escapedName": "lodash.difference",
"rawSpec": "4.5.0",
"saveSpec": null,
"fetchSpec": "4.5.0"
},
"_requiredBy": [
"/archiver-utils"
],
"_resolved": "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz",
"_spec": "4.5.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"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/"
}
],
"description": "The lodash method `_.difference` exported as a module.",
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
"license": "MIT",
"keywords": "lodash-modularized, difference",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"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/)"
"keywords": [
"lodash-modularized",
"difference"
],
"repository": "lodash/lodash",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" }
"license": "MIT",
"name": "lodash.difference",
"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.5.0"
}

View File

@@ -1,17 +1,74 @@
{
"name": "lodash.escaperegexp",
"version": "4.1.2",
"_args": [
[
"lodash.escaperegexp@4.1.2",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "lodash.escaperegexp@4.1.2",
"_id": "lodash.escaperegexp@4.1.2",
"_inBundle": false,
"_integrity": "sha1-ZHYsSGGAglGKw99Mz11YhtriA0c=",
"_location": "/lodash.escaperegexp",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "lodash.escaperegexp@4.1.2",
"name": "lodash.escaperegexp",
"escapedName": "lodash.escaperegexp",
"rawSpec": "4.1.2",
"saveSpec": null,
"fetchSpec": "4.1.2"
},
"_requiredBy": [
"/@fast-csv/format",
"/@fast-csv/parse"
],
"_resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz",
"_spec": "4.1.2",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"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/"
}
],
"description": "The lodash method `_.escapeRegExp` exported as a module.",
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
"license": "MIT",
"keywords": "lodash-modularized, escaperegexp",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"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/)"
"keywords": [
"lodash-modularized",
"escaperegexp"
],
"repository": "lodash/lodash",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" }
"license": "MIT",
"name": "lodash.escaperegexp",
"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.2"
}

View File

@@ -1,17 +1,73 @@
{
"name": "lodash.flatten",
"version": "4.4.0",
"_args": [
[
"lodash.flatten@4.4.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "lodash.flatten@4.4.0",
"_id": "lodash.flatten@4.4.0",
"_inBundle": false,
"_integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=",
"_location": "/lodash.flatten",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "lodash.flatten@4.4.0",
"name": "lodash.flatten",
"escapedName": "lodash.flatten",
"rawSpec": "4.4.0",
"saveSpec": null,
"fetchSpec": "4.4.0"
},
"_requiredBy": [
"/archiver-utils"
],
"_resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz",
"_spec": "4.4.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"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/"
}
],
"description": "The lodash method `_.flatten` exported as a module.",
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
"license": "MIT",
"keywords": "lodash-modularized, flatten",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"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/)"
"keywords": [
"lodash-modularized",
"flatten"
],
"repository": "lodash/lodash",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" }
"license": "MIT",
"name": "lodash.flatten",
"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.4.0"
}

View File

@@ -1,17 +1,73 @@
{
"name": "lodash.groupby",
"version": "4.6.0",
"_args": [
[
"lodash.groupby@4.6.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "lodash.groupby@4.6.0",
"_id": "lodash.groupby@4.6.0",
"_inBundle": false,
"_integrity": "sha1-Cwih3PaDl8OXhVwyOXg4Mt90A9E=",
"_location": "/lodash.groupby",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "lodash.groupby@4.6.0",
"name": "lodash.groupby",
"escapedName": "lodash.groupby",
"rawSpec": "4.6.0",
"saveSpec": null,
"fetchSpec": "4.6.0"
},
"_requiredBy": [
"/@fast-csv/parse"
],
"_resolved": "https://registry.npmjs.org/lodash.groupby/-/lodash.groupby-4.6.0.tgz",
"_spec": "4.6.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"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/"
}
],
"description": "The lodash method `_.groupBy` exported as a module.",
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
"license": "MIT",
"keywords": "lodash-modularized, groupby",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"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/)"
"keywords": [
"lodash-modularized",
"groupby"
],
"repository": "lodash/lodash",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" }
"license": "MIT",
"name": "lodash.groupby",
"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.0"
}

View File

@@ -1,17 +1,73 @@
{
"name": "lodash.isboolean",
"version": "3.0.3",
"_args": [
[
"lodash.isboolean@3.0.3",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "lodash.isboolean@3.0.3",
"_id": "lodash.isboolean@3.0.3",
"_inBundle": false,
"_integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=",
"_location": "/lodash.isboolean",
"_phantomChildren": {},
"_requested": {
"type": "version",
"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": [
"/@fast-csv/format"
],
"_resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz",
"_spec": "3.0.3",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"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/"
}
],
"description": "The lodash method `_.isBoolean` exported as a module.",
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
"license": "MIT",
"keywords": "lodash-modularized, isboolean",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"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/)"
"keywords": [
"lodash-modularized",
"isboolean"
],
"repository": "lodash/lodash",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" }
"license": "MIT",
"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"
}

View File

@@ -1,16 +1,68 @@
{
"name": "lodash.isequal",
"version": "4.5.0",
"_args": [
[
"lodash.isequal@4.5.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "lodash.isequal@4.5.0",
"_id": "lodash.isequal@4.5.0",
"_inBundle": false,
"_integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=",
"_location": "/lodash.isequal",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "lodash.isequal@4.5.0",
"name": "lodash.isequal",
"escapedName": "lodash.isequal",
"rawSpec": "4.5.0",
"saveSpec": null,
"fetchSpec": "4.5.0"
},
"_requiredBy": [
"/@fast-csv/format"
],
"_resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz",
"_spec": "4.5.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"contributors": [
{
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
{
"name": "Mathias Bynens",
"email": "mathias@qiwi.be",
"url": "https://mathiasbynens.be/"
}
],
"description": "The Lodash method `_.isEqual` exported as a module.",
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
"license": "MIT",
"keywords": "lodash-modularized, isequal",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"contributors": [
"John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"Mathias Bynens <mathias@qiwi.be> (https://mathiasbynens.be/)"
"keywords": [
"lodash-modularized",
"isequal"
],
"repository": "lodash/lodash",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" }
"license": "MIT",
"name": "lodash.isequal",
"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.5.0"
}

View File

@@ -1,16 +1,69 @@
{
"name": "lodash.isfunction",
"version": "3.0.9",
"_args": [
[
"lodash.isfunction@3.0.9",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "lodash.isfunction@3.0.9",
"_id": "lodash.isfunction@3.0.9",
"_inBundle": false,
"_integrity": "sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==",
"_location": "/lodash.isfunction",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "lodash.isfunction@3.0.9",
"name": "lodash.isfunction",
"escapedName": "lodash.isfunction",
"rawSpec": "3.0.9",
"saveSpec": null,
"fetchSpec": "3.0.9"
},
"_requiredBy": [
"/@fast-csv/format",
"/@fast-csv/parse"
],
"_resolved": "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz",
"_spec": "3.0.9",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"contributors": [
{
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
{
"name": "Mathias Bynens",
"email": "mathias@qiwi.be",
"url": "https://mathiasbynens.be/"
}
],
"description": "The Lodash method `_.isFunction` exported as a module.",
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
"license": "MIT",
"keywords": "lodash-modularized, isfunction",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"contributors": [
"John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"Mathias Bynens <mathias@qiwi.be> (https://mathiasbynens.be/)"
"keywords": [
"lodash-modularized",
"isfunction"
],
"repository": "lodash/lodash",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" }
"license": "MIT",
"name": "lodash.isfunction",
"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.9"
}

View File

@@ -1,17 +1,77 @@
{
"name": "lodash.isnil",
"version": "4.0.0",
"_args": [
[
"lodash.isnil@4.0.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "lodash.isnil@4.0.0",
"_id": "lodash.isnil@4.0.0",
"_inBundle": false,
"_integrity": "sha1-SeKM1VkBNFjIFMVHnTxmOiG/qmw=",
"_location": "/lodash.isnil",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "lodash.isnil@4.0.0",
"name": "lodash.isnil",
"escapedName": "lodash.isnil",
"rawSpec": "4.0.0",
"saveSpec": null,
"fetchSpec": "4.0.0"
},
"_requiredBy": [
"/@fast-csv/format",
"/@fast-csv/parse"
],
"_resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz",
"_spec": "4.0.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"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/"
}
],
"description": "The lodash method `_.isNil` exported as a module.",
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
"license": "MIT",
"keywords": "lodash, lodash-modularized, stdlib, util, isnil",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"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/)"
"keywords": [
"lodash",
"lodash-modularized",
"stdlib",
"util",
"isnil"
],
"repository": "lodash/lodash",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" }
"license": "MIT",
"name": "lodash.isnil",
"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.0"
}

View File

@@ -1,17 +1,73 @@
{
"name": "lodash.isplainobject",
"version": "4.0.6",
"_args": [
[
"lodash.isplainobject@4.0.6",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "lodash.isplainobject@4.0.6",
"_id": "lodash.isplainobject@4.0.6",
"_inBundle": false,
"_integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=",
"_location": "/lodash.isplainobject",
"_phantomChildren": {},
"_requested": {
"type": "version",
"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": [
"/archiver-utils"
],
"_resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
"_spec": "4.0.6",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"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/"
}
],
"description": "The lodash method `_.isPlainObject` exported as a module.",
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
"license": "MIT",
"keywords": "lodash-modularized, isplainobject",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"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/)"
"keywords": [
"lodash-modularized",
"isplainobject"
],
"repository": "lodash/lodash",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" }
"license": "MIT",
"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"
}

View File

@@ -1,19 +1,85 @@
{
"name": "lodash.isundefined",
"version": "3.0.1",
"_args": [
[
"lodash.isundefined@3.0.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "lodash.isundefined@3.0.1",
"_id": "lodash.isundefined@3.0.1",
"_inBundle": false,
"_integrity": "sha1-I+89lTVWUgOmbO/VuDD4SJEa+0g=",
"_location": "/lodash.isundefined",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "lodash.isundefined@3.0.1",
"name": "lodash.isundefined",
"escapedName": "lodash.isundefined",
"rawSpec": "3.0.1",
"saveSpec": null,
"fetchSpec": "3.0.1"
},
"_requiredBy": [
"/@fast-csv/parse"
],
"_resolved": "https://registry.npmjs.org/lodash.isundefined/-/lodash.isundefined-3.0.1.tgz",
"_spec": "3.0.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"contributors": [
{
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
{
"name": "Benjamin Tan",
"email": "demoneaux@gmail.com",
"url": "https://d10.github.io/"
},
{
"name": "Blaine Bublitz",
"email": "blaine@iceddev.com",
"url": "http://www.iceddev.com/"
},
{
"name": "Kit Cambridge",
"email": "github@kitcambridge.be",
"url": "http://kitcambridge.be/"
},
{
"name": "Mathias Bynens",
"email": "mathias@qiwi.be",
"url": "https://mathiasbynens.be/"
}
],
"description": "The modern build of lodashs `_.isUndefined` as a module.",
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
"license": "MIT",
"keywords": "lodash, lodash-modularized, stdlib, util",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"contributors": [
"John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"Benjamin Tan <demoneaux@gmail.com> (https://d10.github.io/)",
"Blaine Bublitz <blaine@iceddev.com> (http://www.iceddev.com/)",
"Kit Cambridge <github@kitcambridge.be> (http://kitcambridge.be/)",
"Mathias Bynens <mathias@qiwi.be> (https://mathiasbynens.be/)"
"keywords": [
"lodash",
"lodash-modularized",
"stdlib",
"util"
],
"repository": "lodash/lodash",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" }
"license": "MIT",
"name": "lodash.isundefined",
"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.1"
}

View File

@@ -1,17 +1,73 @@
{
"name": "lodash.union",
"version": "4.6.0",
"_args": [
[
"lodash.union@4.6.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "lodash.union@4.6.0",
"_id": "lodash.union@4.6.0",
"_inBundle": false,
"_integrity": "sha1-SLtQiECfFvGCFmZkHETdGqrjzYg=",
"_location": "/lodash.union",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "lodash.union@4.6.0",
"name": "lodash.union",
"escapedName": "lodash.union",
"rawSpec": "4.6.0",
"saveSpec": null,
"fetchSpec": "4.6.0"
},
"_requiredBy": [
"/archiver-utils"
],
"_resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz",
"_spec": "4.6.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"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/"
}
],
"description": "The lodash method `_.union` exported as a module.",
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
"license": "MIT",
"keywords": "lodash-modularized, union",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"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/)"
"keywords": [
"lodash-modularized",
"union"
],
"repository": "lodash/lodash",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" }
"license": "MIT",
"name": "lodash.union",
"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.0"
}

View File

@@ -1,17 +1,73 @@
{
"name": "lodash.uniq",
"version": "4.5.0",
"_args": [
[
"lodash.uniq@4.5.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "lodash.uniq@4.5.0",
"_id": "lodash.uniq@4.5.0",
"_inBundle": false,
"_integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=",
"_location": "/lodash.uniq",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "lodash.uniq@4.5.0",
"name": "lodash.uniq",
"escapedName": "lodash.uniq",
"rawSpec": "4.5.0",
"saveSpec": null,
"fetchSpec": "4.5.0"
},
"_requiredBy": [
"/@fast-csv/parse"
],
"_resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
"_spec": "4.5.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
},
"bugs": {
"url": "https://github.com/lodash/lodash/issues"
},
"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/"
}
],
"description": "The lodash method `_.uniq` exported as a module.",
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
"license": "MIT",
"keywords": "lodash-modularized, uniq",
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
"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/)"
"keywords": [
"lodash-modularized",
"uniq"
],
"repository": "lodash/lodash",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" }
"license": "MIT",
"name": "lodash.uniq",
"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.5.0"
}

View File

@@ -1,8 +1,59 @@
{
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)",
"name": "minimatch",
"_args": [
[
"minimatch@3.1.2",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "minimatch@3.1.2",
"_id": "minimatch@3.1.2",
"_inBundle": false,
"_integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
"_location": "/minimatch",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "minimatch@3.1.2",
"name": "minimatch",
"escapedName": "minimatch",
"rawSpec": "3.1.2",
"saveSpec": null,
"fetchSpec": "3.1.2"
},
"_requiredBy": [
"/glob",
"/readdir-glob"
],
"_resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
"_spec": "3.1.2",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me"
},
"bugs": {
"url": "https://github.com/isaacs/minimatch/issues"
},
"dependencies": {
"brace-expansion": "^1.1.7"
},
"description": "a glob matcher in javascript",
"version": "3.1.2",
"devDependencies": {
"tap": "^15.1.6"
},
"engines": {
"node": "*"
},
"files": [
"minimatch.js"
],
"homepage": "https://github.com/isaacs/minimatch#readme",
"license": "ISC",
"main": "minimatch.js",
"name": "minimatch",
"publishConfig": {
"tag": "v3-legacy"
},
@@ -10,24 +61,11 @@
"type": "git",
"url": "git://github.com/isaacs/minimatch.git"
},
"main": "minimatch.js",
"scripts": {
"test": "tap",
"preversion": "npm test",
"postpublish": "git push origin --all; git push origin --tags",
"postversion": "npm publish",
"postpublish": "git push origin --all; git push origin --tags"
"preversion": "npm test",
"test": "tap"
},
"engines": {
"node": "*"
},
"dependencies": {
"brace-expansion": "^1.1.7"
},
"devDependencies": {
"tap": "^15.1.6"
},
"license": "ISC",
"files": [
"minimatch.js"
]
"version": "3.1.2"
}

View File

@@ -1,16 +1,64 @@
{
"name": "minimist",
"version": "1.2.6",
"_args": [
[
"minimist@1.2.6",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "minimist@1.2.6",
"_id": "minimist@1.2.6",
"_inBundle": false,
"_integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==",
"_location": "/minimist",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "minimist@1.2.6",
"name": "minimist",
"escapedName": "minimist",
"rawSpec": "1.2.6",
"saveSpec": null,
"fetchSpec": "1.2.6"
},
"_requiredBy": [
"/mkdirp"
],
"_resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz",
"_spec": "1.2.6",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
},
"bugs": {
"url": "https://github.com/substack/minimist/issues"
},
"description": "parse argument options",
"main": "index.js",
"devDependencies": {
"covert": "^1.0.0",
"tap": "~0.4.0",
"tape": "^3.5.0"
},
"homepage": "https://github.com/substack/minimist",
"keywords": [
"argv",
"getopt",
"parser",
"optimist"
],
"license": "MIT",
"main": "index.js",
"name": "minimist",
"repository": {
"type": "git",
"url": "git://github.com/substack/minimist.git"
},
"scripts": {
"test": "tap test/*.js",
"coverage": "covert test/*.js"
"coverage": "covert test/*.js",
"test": "tap test/*.js"
},
"testling": {
"files": "test/*.js",
@@ -25,21 +73,5 @@
"opera/12"
]
},
"repository": {
"type": "git",
"url": "git://github.com/substack/minimist.git"
},
"homepage": "https://github.com/substack/minimist",
"keywords": [
"argv",
"getopt",
"parser",
"optimist"
],
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
},
"license": "MIT"
"version": "1.2.6"
}

View File

@@ -1,33 +1,72 @@
{
"name": "mkdirp",
"description": "Recursively mkdir, like `mkdir -p`",
"version": "0.5.6",
"publishConfig": {
"tag": "legacy"
},
"author": "James Halliday <mail@substack.net> (http://substack.net)",
"main": "index.js",
"keywords": [
"mkdir",
"directory"
"_args": [
[
"mkdirp@0.5.6",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"repository": {
"type": "git",
"url": "https://github.com/substack/node-mkdirp.git"
"_development": true,
"_from": "mkdirp@0.5.6",
"_id": "mkdirp@0.5.6",
"_inBundle": false,
"_integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
"_location": "/mkdirp",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "mkdirp@0.5.6",
"name": "mkdirp",
"escapedName": "mkdirp",
"rawSpec": "0.5.6",
"saveSpec": null,
"fetchSpec": "0.5.6"
},
"scripts": {
"test": "tap test/*.js"
"_requiredBy": [
"/fstream"
],
"_resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
"_spec": "0.5.6",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
},
"bin": {
"mkdirp": "bin/cmd.js"
},
"bugs": {
"url": "https://github.com/substack/node-mkdirp/issues"
},
"dependencies": {
"minimist": "^1.2.6"
},
"description": "Recursively mkdir, like `mkdir -p`",
"devDependencies": {
"tap": "^16.0.1"
},
"bin": "bin/cmd.js",
"license": "MIT",
"files": [
"bin",
"index.js"
]
],
"homepage": "https://github.com/substack/node-mkdirp#readme",
"keywords": [
"mkdir",
"directory"
],
"license": "MIT",
"main": "index.js",
"name": "mkdirp",
"publishConfig": {
"tag": "legacy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/substack/node-mkdirp.git"
},
"scripts": {
"test": "tap test/*.js"
},
"version": "0.5.6"
}

View File

@@ -1,33 +1,64 @@
{
"name": "normalize-path",
"description": "Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.",
"version": "3.0.0",
"homepage": "https://github.com/jonschlinkert/normalize-path",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Blaine Bublitz (https://twitter.com/BlaineBublitz)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)"
"_args": [
[
"normalize-path@3.0.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"repository": "jonschlinkert/normalize-path",
"_development": true,
"_from": "normalize-path@3.0.0",
"_id": "normalize-path@3.0.0",
"_inBundle": false,
"_integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
"_location": "/normalize-path",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "normalize-path@3.0.0",
"name": "normalize-path",
"escapedName": "normalize-path",
"rawSpec": "3.0.0",
"saveSpec": null,
"fetchSpec": "3.0.0"
},
"_requiredBy": [
"/archiver-utils",
"/compress-commons"
],
"_resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
"_spec": "3.0.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"bugs": {
"url": "https://github.com/jonschlinkert/normalize-path/issues"
},
"license": "MIT",
"files": [
"index.js"
"contributors": [
{
"name": "Blaine Bublitz",
"url": "https://twitter.com/BlaineBublitz"
},
{
"name": "Jon Schlinkert",
"url": "http://twitter.com/jonschlinkert"
}
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"description": "Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.",
"devDependencies": {
"gulp-format-md": "^1.0.0",
"minimist": "^1.2.0",
"mocha": "^3.5.3"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/jonschlinkert/normalize-path",
"keywords": [
"absolute",
"backslash",
@@ -49,6 +80,16 @@
"unix",
"urix"
],
"license": "MIT",
"main": "index.js",
"name": "normalize-path",
"repository": {
"type": "git",
"url": "git+https://github.com/jonschlinkert/normalize-path.git"
},
"scripts": {
"test": "mocha"
},
"verb": {
"toc": false,
"layout": "default",
@@ -73,5 +114,6 @@
"lint": {
"reflinks": true
}
}
},
"version": "3.0.0"
}

View File

@@ -1,33 +1,72 @@
{
"name": "once",
"version": "1.4.0",
"description": "Run a function exactly one time",
"main": "once.js",
"directories": {
"test": "test"
"_args": [
[
"once@1.4.0",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "once@1.4.0",
"_id": "once@1.4.0",
"_inBundle": false,
"_integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
"_location": "/once",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "once@1.4.0",
"name": "once",
"escapedName": "once",
"rawSpec": "1.4.0",
"saveSpec": null,
"fetchSpec": "1.4.0"
},
"_requiredBy": [
"/end-of-stream",
"/glob",
"/inflight"
],
"_resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
"_spec": "1.4.0",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me/"
},
"bugs": {
"url": "https://github.com/isaacs/once/issues"
},
"dependencies": {
"wrappy": "1"
},
"description": "Run a function exactly one time",
"devDependencies": {
"tap": "^7.0.1"
},
"scripts": {
"test": "tap test/*.js"
"directories": {
"test": "test"
},
"files": [
"once.js"
],
"repository": {
"type": "git",
"url": "git://github.com/isaacs/once"
},
"homepage": "https://github.com/isaacs/once#readme",
"keywords": [
"once",
"function",
"one",
"single"
],
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"license": "ISC"
"license": "ISC",
"main": "once.js",
"name": "once",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/once.git"
},
"scripts": {
"test": "tap test/*.js"
},
"version": "1.4.0"
}

View File

@@ -1,32 +1,62 @@
{
"name": "pako",
"description": "zlib port to javascript - fast, modularized, with browser support",
"version": "1.0.11",
"keywords": [
"zlib",
"deflate",
"inflate",
"gzip"
"_args": [
[
"pako@1.0.11",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"homepage": "https://github.com/nodeca/pako",
"contributors": [
"Andrei Tuputcyn (https://github.com/andr83)",
"Vitaly Puzrin (https://github.com/puzrin)",
"Friedel Ziegelmayer (https://github.com/dignifiedquire)",
"Kirill Efimov (https://github.com/Kirill89)",
"Jean-loup Gailly",
"Mark Adler"
],
"files": [
"index.js",
"dist/",
"lib/"
],
"license": "(MIT AND Zlib)",
"repository": "nodeca/pako",
"scripts": {
"test": "make test"
"_development": true,
"_from": "pako@1.0.11",
"_id": "pako@1.0.11",
"_inBundle": false,
"_integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==",
"_location": "/pako",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "pako@1.0.11",
"name": "pako",
"escapedName": "pako",
"rawSpec": "1.0.11",
"saveSpec": null,
"fetchSpec": "1.0.11"
},
"_requiredBy": [
"/jszip"
],
"_resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
"_spec": "1.0.11",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"bugs": {
"url": "https://github.com/nodeca/pako/issues"
},
"contributors": [
{
"name": "Andrei Tuputcyn",
"url": "https://github.com/andr83"
},
{
"name": "Vitaly Puzrin",
"url": "https://github.com/puzrin"
},
{
"name": "Friedel Ziegelmayer",
"url": "https://github.com/dignifiedquire"
},
{
"name": "Kirill Efimov",
"url": "https://github.com/Kirill89"
},
{
"name": "Jean-loup Gailly"
},
{
"name": "Mark Adler"
}
],
"dependencies": {},
"description": "zlib port to javascript - fast, modularized, with browser support",
"devDependencies": {
"ansi": "^0.3.1",
"benchmark": "^2.1.4",
@@ -40,5 +70,26 @@
"uglify-js": "=3.4.8",
"zlibjs": "^0.3.1"
},
"dependencies": {}
"files": [
"index.js",
"dist/",
"lib/"
],
"homepage": "https://github.com/nodeca/pako",
"keywords": [
"zlib",
"deflate",
"inflate",
"gzip"
],
"license": "(MIT AND Zlib)",
"name": "pako",
"repository": {
"type": "git",
"url": "git+https://github.com/nodeca/pako.git"
},
"scripts": {
"test": "make test"
},
"version": "1.0.11"
}

View File

@@ -1,23 +1,52 @@
{
"name": "path-is-absolute",
"version": "1.0.1",
"description": "Node.js 0.12 path.isAbsolute() ponyfill",
"license": "MIT",
"repository": "sindresorhus/path-is-absolute",
"_args": [
[
"path-is-absolute@1.0.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"_development": true,
"_from": "path-is-absolute@1.0.1",
"_id": "path-is-absolute@1.0.1",
"_inBundle": false,
"_integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
"_location": "/path-is-absolute",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "path-is-absolute@1.0.1",
"name": "path-is-absolute",
"escapedName": "path-is-absolute",
"rawSpec": "1.0.1",
"saveSpec": null,
"fetchSpec": "1.0.1"
},
"_requiredBy": [
"/glob"
],
"_resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
"_spec": "1.0.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"bugs": {
"url": "https://github.com/sindresorhus/path-is-absolute/issues"
},
"description": "Node.js 0.12 path.isAbsolute() ponyfill",
"devDependencies": {
"xo": "^0.16.0"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "xo && node test.js"
},
"files": [
"index.js"
],
"homepage": "https://github.com/sindresorhus/path-is-absolute#readme",
"keywords": [
"path",
"paths",
@@ -37,7 +66,14 @@
"detect",
"check"
],
"devDependencies": {
"xo": "^0.16.0"
}
"license": "MIT",
"name": "path-is-absolute",
"repository": {
"type": "git",
"url": "git+https://github.com/sindresorhus/path-is-absolute.git"
},
"scripts": {
"test": "xo && node test.js"
},
"version": "1.0.1"
}

View File

@@ -1,25 +1,58 @@
{
"name": "process-nextick-args",
"version": "2.0.1",
"description": "process.nextTick but always with args",
"main": "index.js",
"files": [
"index.js"
"_args": [
[
"process-nextick-args@2.0.1",
"D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json"
]
],
"scripts": {
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/calvinmetcalf/process-nextick-args.git"
"_development": true,
"_from": "process-nextick-args@2.0.1",
"_id": "process-nextick-args@2.0.1",
"_inBundle": false,
"_integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
"_location": "/process-nextick-args",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "process-nextick-args@2.0.1",
"name": "process-nextick-args",
"escapedName": "process-nextick-args",
"rawSpec": "2.0.1",
"saveSpec": null,
"fetchSpec": "2.0.1"
},
"_requiredBy": [
"/archiver-utils/readable-stream",
"/duplexer2/readable-stream",
"/jszip/readable-stream",
"/lazystream/readable-stream",
"/unzipper/readable-stream"
],
"_resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
"_spec": "2.0.1",
"_where": "D:\\gitee\\oops-framework\\extensions\\oops-plugin-excel-to-json",
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/calvinmetcalf/process-nextick-args/issues"
},
"homepage": "https://github.com/calvinmetcalf/process-nextick-args",
"description": "process.nextTick but always with args",
"devDependencies": {
"tap": "~0.2.6"
}
},
"files": [
"index.js"
],
"homepage": "https://github.com/calvinmetcalf/process-nextick-args",
"license": "MIT",
"main": "index.js",
"name": "process-nextick-args",
"repository": {
"type": "git",
"url": "git+https://github.com/calvinmetcalf/process-nextick-args.git"
},
"scripts": {
"test": "node test.js"
},
"version": "2.0.1"
}

Some files were not shown because too many files have changed in this diff Show More