Showing
65 changed files
with
2929 additions
and
861 deletions
1 | -console.log('Hello World') | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | +const express = require('express'); | ||
2 | +const bodyParser = require('body-parser'); | ||
3 | + | ||
4 | +const app = express(); | ||
5 | + | ||
6 | +app.use(bodyParser.json()); | ||
7 | +//Home | ||
8 | +app.get('/', (req,res) => res.send('Hello world!')); | ||
9 | + | ||
10 | +//login | ||
11 | +//logout | ||
12 | +//register | ||
13 | +//Mapmain | ||
14 | +//Mapmain/category/:_category | ||
15 | +//Mapmain/post/:_pk | ||
16 | + | ||
17 | +app.listen(3000, ()=> console.log('Example app listening on port 3000!')); | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -6,7 +6,10 @@ case `uname` in | ... | @@ -6,7 +6,10 @@ case `uname` in |
6 | esac | 6 | esac |
7 | 7 | ||
8 | if [ -x "$basedir/node" ]; then | 8 | if [ -x "$basedir/node" ]; then |
9 | - exec "$basedir/node" "$basedir/../mime/cli.js" "$@" | 9 | + "$basedir/node" "$basedir/../mime/cli.js" "$@" |
10 | + ret=$? | ||
10 | else | 11 | else |
11 | - exec node "$basedir/../mime/cli.js" "$@" | 12 | + node "$basedir/../mime/cli.js" "$@" |
13 | + ret=$? | ||
12 | fi | 14 | fi |
15 | +exit $ret | ... | ... |
1 | @ECHO off | 1 | @ECHO off |
2 | -GOTO start | ||
3 | -:find_dp0 | ||
4 | -SET dp0=%~dp0 | ||
5 | -EXIT /b | ||
6 | -:start | ||
7 | SETLOCAL | 2 | SETLOCAL |
8 | CALL :find_dp0 | 3 | CALL :find_dp0 |
9 | 4 | ||
... | @@ -14,4 +9,9 @@ IF EXIST "%dp0%\node.exe" ( | ... | @@ -14,4 +9,9 @@ IF EXIST "%dp0%\node.exe" ( |
14 | SET PATHEXT=%PATHEXT:;.JS;=;% | 9 | SET PATHEXT=%PATHEXT:;.JS;=;% |
15 | ) | 10 | ) |
16 | 11 | ||
17 | -endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\mime\cli.js" %* | 12 | +"%_prog%" "%dp0%\..\mime\cli.js" %* |
13 | +ENDLOCAL | ||
14 | +EXIT /b %errorlevel% | ||
15 | +:find_dp0 | ||
16 | +SET dp0=%~dp0 | ||
17 | +EXIT /b | ... | ... |
... | @@ -9,20 +9,10 @@ if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | ... | @@ -9,20 +9,10 @@ if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { |
9 | } | 9 | } |
10 | $ret=0 | 10 | $ret=0 |
11 | if (Test-Path "$basedir/node$exe") { | 11 | if (Test-Path "$basedir/node$exe") { |
12 | - # Support pipeline input | 12 | + & "$basedir/node$exe" "$basedir/../mime/cli.js" $args |
13 | - if ($MyInvocation.ExpectingInput) { | ||
14 | - $input | & "$basedir/node$exe" "$basedir/../mime/cli.js" $args | ||
15 | - } else { | ||
16 | - & "$basedir/node$exe" "$basedir/../mime/cli.js" $args | ||
17 | - } | ||
18 | $ret=$LASTEXITCODE | 13 | $ret=$LASTEXITCODE |
19 | } else { | 14 | } else { |
20 | - # Support pipeline input | 15 | + & "node$exe" "$basedir/../mime/cli.js" $args |
21 | - if ($MyInvocation.ExpectingInput) { | ||
22 | - $input | & "node$exe" "$basedir/../mime/cli.js" $args | ||
23 | - } else { | ||
24 | - & "node$exe" "$basedir/../mime/cli.js" $args | ||
25 | - } | ||
26 | $ret=$LASTEXITCODE | 16 | $ret=$LASTEXITCODE |
27 | } | 17 | } |
28 | exit $ret | 18 | exit $ret | ... | ... |
1 | { | 1 | { |
2 | - "name": "accepts", | 2 | + "_args": [ |
3 | - "description": "Higher-level content negotiation", | 3 | + [ |
4 | - "version": "1.3.7", | 4 | + "accepts@1.3.7", |
5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" | ||
6 | + ] | ||
7 | + ], | ||
8 | + "_from": "accepts@1.3.7", | ||
9 | + "_id": "accepts@1.3.7", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", | ||
12 | + "_location": "/accepts", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "accepts@1.3.7", | ||
18 | + "name": "accepts", | ||
19 | + "escapedName": "accepts", | ||
20 | + "rawSpec": "1.3.7", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.3.7" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", | ||
28 | + "_spec": "1.3.7", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "bugs": { | ||
31 | + "url": "https://github.com/jshttp/accepts/issues" | ||
32 | + }, | ||
5 | "contributors": [ | 33 | "contributors": [ |
6 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | 34 | + { |
7 | - "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)" | 35 | + "name": "Douglas Christopher Wilson", |
36 | + "email": "doug@somethingdoug.com" | ||
37 | + }, | ||
38 | + { | ||
39 | + "name": "Jonathan Ong", | ||
40 | + "email": "me@jongleberry.com", | ||
41 | + "url": "http://jongleberry.com" | ||
42 | + } | ||
8 | ], | 43 | ], |
9 | - "license": "MIT", | ||
10 | - "repository": "jshttp/accepts", | ||
11 | "dependencies": { | 44 | "dependencies": { |
12 | "mime-types": "~2.1.24", | 45 | "mime-types": "~2.1.24", |
13 | "negotiator": "0.6.2" | 46 | "negotiator": "0.6.2" |
14 | }, | 47 | }, |
48 | + "description": "Higher-level content negotiation", | ||
15 | "devDependencies": { | 49 | "devDependencies": { |
16 | "deep-equal": "1.0.1", | 50 | "deep-equal": "1.0.1", |
17 | "eslint": "5.16.0", | 51 | "eslint": "5.16.0", |
... | @@ -24,13 +58,26 @@ | ... | @@ -24,13 +58,26 @@ |
24 | "mocha": "6.1.4", | 58 | "mocha": "6.1.4", |
25 | "nyc": "14.0.0" | 59 | "nyc": "14.0.0" |
26 | }, | 60 | }, |
61 | + "engines": { | ||
62 | + "node": ">= 0.6" | ||
63 | + }, | ||
27 | "files": [ | 64 | "files": [ |
28 | "LICENSE", | 65 | "LICENSE", |
29 | "HISTORY.md", | 66 | "HISTORY.md", |
30 | "index.js" | 67 | "index.js" |
31 | ], | 68 | ], |
32 | - "engines": { | 69 | + "homepage": "https://github.com/jshttp/accepts#readme", |
33 | - "node": ">= 0.6" | 70 | + "keywords": [ |
71 | + "content", | ||
72 | + "negotiation", | ||
73 | + "accept", | ||
74 | + "accepts" | ||
75 | + ], | ||
76 | + "license": "MIT", | ||
77 | + "name": "accepts", | ||
78 | + "repository": { | ||
79 | + "type": "git", | ||
80 | + "url": "git+https://github.com/jshttp/accepts.git" | ||
34 | }, | 81 | }, |
35 | "scripts": { | 82 | "scripts": { |
36 | "lint": "eslint --plugin markdown --ext js,md .", | 83 | "lint": "eslint --plugin markdown --ext js,md .", |
... | @@ -38,10 +85,5 @@ | ... | @@ -38,10 +85,5 @@ |
38 | "test-cov": "nyc --reporter=html --reporter=text npm test", | 85 | "test-cov": "nyc --reporter=html --reporter=text npm test", |
39 | "test-travis": "nyc --reporter=text npm test" | 86 | "test-travis": "nyc --reporter=text npm test" |
40 | }, | 87 | }, |
41 | - "keywords": [ | 88 | + "version": "1.3.7" |
42 | - "content", | ||
43 | - "negotiation", | ||
44 | - "accept", | ||
45 | - "accepts" | ||
46 | - ] | ||
47 | } | 89 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "array-flatten", | 2 | + "_args": [ |
3 | - "version": "1.1.1", | 3 | + [ |
4 | - "description": "Flatten an array of nested arrays into a single flat array", | 4 | + "array-flatten@1.1.1", |
5 | - "main": "array-flatten.js", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "files": [ | 6 | + ] |
7 | - "array-flatten.js", | ||
8 | - "LICENSE" | ||
9 | ], | 7 | ], |
10 | - "scripts": { | 8 | + "_from": "array-flatten@1.1.1", |
11 | - "test": "istanbul cover _mocha -- -R spec" | 9 | + "_id": "array-flatten@1.1.1", |
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", | ||
12 | + "_location": "/array-flatten", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "array-flatten@1.1.1", | ||
18 | + "name": "array-flatten", | ||
19 | + "escapedName": "array-flatten", | ||
20 | + "rawSpec": "1.1.1", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.1.1" | ||
12 | }, | 23 | }, |
13 | - "repository": { | 24 | + "_requiredBy": [ |
14 | - "type": "git", | 25 | + "/express" |
15 | - "url": "git://github.com/blakeembrey/array-flatten.git" | ||
16 | - }, | ||
17 | - "keywords": [ | ||
18 | - "array", | ||
19 | - "flatten", | ||
20 | - "arguments", | ||
21 | - "depth" | ||
22 | ], | 26 | ], |
27 | + "_resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", | ||
28 | + "_spec": "1.1.1", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
23 | "author": { | 30 | "author": { |
24 | "name": "Blake Embrey", | 31 | "name": "Blake Embrey", |
25 | "email": "hello@blakeembrey.com", | 32 | "email": "hello@blakeembrey.com", |
26 | "url": "http://blakeembrey.me" | 33 | "url": "http://blakeembrey.me" |
27 | }, | 34 | }, |
28 | - "license": "MIT", | ||
29 | "bugs": { | 35 | "bugs": { |
30 | "url": "https://github.com/blakeembrey/array-flatten/issues" | 36 | "url": "https://github.com/blakeembrey/array-flatten/issues" |
31 | }, | 37 | }, |
32 | - "homepage": "https://github.com/blakeembrey/array-flatten", | 38 | + "description": "Flatten an array of nested arrays into a single flat array", |
33 | "devDependencies": { | 39 | "devDependencies": { |
34 | "istanbul": "^0.3.13", | 40 | "istanbul": "^0.3.13", |
35 | "mocha": "^2.2.4", | 41 | "mocha": "^2.2.4", |
36 | "pre-commit": "^1.0.7", | 42 | "pre-commit": "^1.0.7", |
37 | "standard": "^3.7.3" | 43 | "standard": "^3.7.3" |
38 | - } | 44 | + }, |
45 | + "files": [ | ||
46 | + "array-flatten.js", | ||
47 | + "LICENSE" | ||
48 | + ], | ||
49 | + "homepage": "https://github.com/blakeembrey/array-flatten", | ||
50 | + "keywords": [ | ||
51 | + "array", | ||
52 | + "flatten", | ||
53 | + "arguments", | ||
54 | + "depth" | ||
55 | + ], | ||
56 | + "license": "MIT", | ||
57 | + "main": "array-flatten.js", | ||
58 | + "name": "array-flatten", | ||
59 | + "repository": { | ||
60 | + "type": "git", | ||
61 | + "url": "git://github.com/blakeembrey/array-flatten.git" | ||
62 | + }, | ||
63 | + "scripts": { | ||
64 | + "test": "istanbul cover _mocha -- -R spec" | ||
65 | + }, | ||
66 | + "version": "1.1.1" | ||
39 | } | 67 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "bignumber.js", | 2 | + "_args": [ |
3 | + [ | ||
4 | + "bignumber.js@9.0.0", | ||
5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" | ||
6 | + ] | ||
7 | + ], | ||
8 | + "_from": "bignumber.js@9.0.0", | ||
9 | + "_id": "bignumber.js@9.0.0", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha512-t/OYhhJ2SD+YGBQcjY8GzzDHEk9f3nerxjtfa6tlMXfe7frs/WozhvCNoGvpM0P3bNf3Gq5ZRMlGr5f3r4/N8A==", | ||
12 | + "_location": "/bignumber.js", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "bignumber.js@9.0.0", | ||
18 | + "name": "bignumber.js", | ||
19 | + "escapedName": "bignumber.js", | ||
20 | + "rawSpec": "9.0.0", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "9.0.0" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/mysql" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.0.tgz", | ||
28 | + "_spec": "9.0.0", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "author": { | ||
31 | + "name": "Michael Mclaughlin", | ||
32 | + "email": "M8ch88l@gmail.com" | ||
33 | + }, | ||
34 | + "browser": "bignumber.js", | ||
35 | + "bugs": { | ||
36 | + "url": "https://github.com/MikeMcl/bignumber.js/issues" | ||
37 | + }, | ||
38 | + "dependencies": {}, | ||
3 | "description": "A library for arbitrary-precision decimal and non-decimal arithmetic", | 39 | "description": "A library for arbitrary-precision decimal and non-decimal arithmetic", |
4 | - "version": "9.0.0", | 40 | + "engines": { |
41 | + "node": "*" | ||
42 | + }, | ||
43 | + "homepage": "https://github.com/MikeMcl/bignumber.js#readme", | ||
5 | "keywords": [ | 44 | "keywords": [ |
6 | "arbitrary", | 45 | "arbitrary", |
7 | "precision", | 46 | "precision", |
... | @@ -16,25 +55,18 @@ | ... | @@ -16,25 +55,18 @@ |
16 | "bigint", | 55 | "bigint", |
17 | "bignum" | 56 | "bignum" |
18 | ], | 57 | ], |
19 | - "repository": { | 58 | + "license": "MIT", |
20 | - "type": "git", | ||
21 | - "url": "https://github.com/MikeMcl/bignumber.js.git" | ||
22 | - }, | ||
23 | "main": "bignumber", | 59 | "main": "bignumber", |
24 | "module": "bignumber.mjs", | 60 | "module": "bignumber.mjs", |
25 | - "browser": "bignumber.js", | 61 | + "name": "bignumber.js", |
26 | - "types": "bignumber.d.ts", | 62 | + "repository": { |
27 | - "author": { | 63 | + "type": "git", |
28 | - "name": "Michael Mclaughlin", | 64 | + "url": "git+https://github.com/MikeMcl/bignumber.js.git" |
29 | - "email": "M8ch88l@gmail.com" | ||
30 | - }, | ||
31 | - "engines": { | ||
32 | - "node": "*" | ||
33 | }, | 65 | }, |
34 | - "license": "MIT", | ||
35 | "scripts": { | 66 | "scripts": { |
36 | - "test": "node test/test", | 67 | + "build": "uglifyjs bignumber.js --source-map -c -m -o bignumber.min.js", |
37 | - "build": "uglifyjs bignumber.js --source-map -c -m -o bignumber.min.js" | 68 | + "test": "node test/test" |
38 | }, | 69 | }, |
39 | - "dependencies": {} | 70 | + "types": "bignumber.d.ts", |
71 | + "version": "9.0.0" | ||
40 | } | 72 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "body-parser", | 2 | + "_from": "body-parser", |
3 | - "description": "Node.js body parsing middleware", | 3 | + "_id": "body-parser@1.19.0", |
4 | - "version": "1.19.0", | 4 | + "_inBundle": false, |
5 | + "_integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", | ||
6 | + "_location": "/body-parser", | ||
7 | + "_phantomChildren": {}, | ||
8 | + "_requested": { | ||
9 | + "type": "tag", | ||
10 | + "registry": true, | ||
11 | + "raw": "body-parser", | ||
12 | + "name": "body-parser", | ||
13 | + "escapedName": "body-parser", | ||
14 | + "rawSpec": "", | ||
15 | + "saveSpec": null, | ||
16 | + "fetchSpec": "latest" | ||
17 | + }, | ||
18 | + "_requiredBy": [ | ||
19 | + "#USER", | ||
20 | + "/", | ||
21 | + "/express" | ||
22 | + ], | ||
23 | + "_resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", | ||
24 | + "_shasum": "96b2709e57c9c4e09a6fd66a8fd979844f69f08a", | ||
25 | + "_spec": "body-parser", | ||
26 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
27 | + "bugs": { | ||
28 | + "url": "https://github.com/expressjs/body-parser/issues" | ||
29 | + }, | ||
30 | + "bundleDependencies": false, | ||
5 | "contributors": [ | 31 | "contributors": [ |
6 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | 32 | + { |
7 | - "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)" | 33 | + "name": "Douglas Christopher Wilson", |
34 | + "email": "doug@somethingdoug.com" | ||
35 | + }, | ||
36 | + { | ||
37 | + "name": "Jonathan Ong", | ||
38 | + "email": "me@jongleberry.com", | ||
39 | + "url": "http://jongleberry.com" | ||
40 | + } | ||
8 | ], | 41 | ], |
9 | - "license": "MIT", | ||
10 | - "repository": "expressjs/body-parser", | ||
11 | "dependencies": { | 42 | "dependencies": { |
12 | "bytes": "3.1.0", | 43 | "bytes": "3.1.0", |
13 | "content-type": "~1.0.4", | 44 | "content-type": "~1.0.4", |
... | @@ -20,6 +51,8 @@ | ... | @@ -20,6 +51,8 @@ |
20 | "raw-body": "2.4.0", | 51 | "raw-body": "2.4.0", |
21 | "type-is": "~1.6.17" | 52 | "type-is": "~1.6.17" |
22 | }, | 53 | }, |
54 | + "deprecated": false, | ||
55 | + "description": "Node.js body parsing middleware", | ||
23 | "devDependencies": { | 56 | "devDependencies": { |
24 | "eslint": "5.16.0", | 57 | "eslint": "5.16.0", |
25 | "eslint-config-standard": "12.0.0", | 58 | "eslint-config-standard": "12.0.0", |
... | @@ -34,19 +67,27 @@ | ... | @@ -34,19 +67,27 @@ |
34 | "safe-buffer": "5.1.2", | 67 | "safe-buffer": "5.1.2", |
35 | "supertest": "4.0.2" | 68 | "supertest": "4.0.2" |
36 | }, | 69 | }, |
70 | + "engines": { | ||
71 | + "node": ">= 0.8" | ||
72 | + }, | ||
37 | "files": [ | 73 | "files": [ |
38 | "lib/", | 74 | "lib/", |
39 | "LICENSE", | 75 | "LICENSE", |
40 | "HISTORY.md", | 76 | "HISTORY.md", |
41 | "index.js" | 77 | "index.js" |
42 | ], | 78 | ], |
43 | - "engines": { | 79 | + "homepage": "https://github.com/expressjs/body-parser#readme", |
44 | - "node": ">= 0.8" | 80 | + "license": "MIT", |
81 | + "name": "body-parser", | ||
82 | + "repository": { | ||
83 | + "type": "git", | ||
84 | + "url": "git+https://github.com/expressjs/body-parser.git" | ||
45 | }, | 85 | }, |
46 | "scripts": { | 86 | "scripts": { |
47 | "lint": "eslint --plugin markdown --ext js,md .", | 87 | "lint": "eslint --plugin markdown --ext js,md .", |
48 | "test": "mocha --require test/support/env --reporter spec --check-leaks --bail test/", | 88 | "test": "mocha --require test/support/env --reporter spec --check-leaks --bail test/", |
49 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/", | 89 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/", |
50 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/" | 90 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/" |
51 | - } | 91 | + }, |
92 | + "version": "1.19.0" | ||
52 | } | 93 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "bytes", | 2 | + "_from": "bytes@3.1.0", |
3 | - "description": "Utility to parse a string bytes to bytes and vice-versa", | 3 | + "_id": "bytes@3.1.0", |
4 | - "version": "3.1.0", | 4 | + "_inBundle": false, |
5 | - "author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)", | 5 | + "_integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", |
6 | - "contributors": [ | 6 | + "_location": "/bytes", |
7 | - "Jed Watson <jed.watson@me.com>", | 7 | + "_phantomChildren": {}, |
8 | - "Théo FIDRY <theo.fidry@gmail.com>" | 8 | + "_requested": { |
9 | + "type": "version", | ||
10 | + "registry": true, | ||
11 | + "raw": "bytes@3.1.0", | ||
12 | + "name": "bytes", | ||
13 | + "escapedName": "bytes", | ||
14 | + "rawSpec": "3.1.0", | ||
15 | + "saveSpec": null, | ||
16 | + "fetchSpec": "3.1.0" | ||
17 | + }, | ||
18 | + "_requiredBy": [ | ||
19 | + "/body-parser", | ||
20 | + "/raw-body" | ||
9 | ], | 21 | ], |
10 | - "license": "MIT", | 22 | + "_resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", |
11 | - "keywords": [ | 23 | + "_shasum": "f6cf7933a360e0588fa9fde85651cdc7f805d1f6", |
12 | - "byte", | 24 | + "_spec": "bytes@3.1.0", |
13 | - "bytes", | 25 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory\\node_modules\\body-parser", |
14 | - "utility", | 26 | + "author": { |
15 | - "parse", | 27 | + "name": "TJ Holowaychuk", |
16 | - "parser", | 28 | + "email": "tj@vision-media.ca", |
17 | - "convert", | 29 | + "url": "http://tjholowaychuk.com" |
18 | - "converter" | 30 | + }, |
31 | + "bugs": { | ||
32 | + "url": "https://github.com/visionmedia/bytes.js/issues" | ||
33 | + }, | ||
34 | + "bundleDependencies": false, | ||
35 | + "contributors": [ | ||
36 | + { | ||
37 | + "name": "Jed Watson", | ||
38 | + "email": "jed.watson@me.com" | ||
39 | + }, | ||
40 | + { | ||
41 | + "name": "Théo FIDRY", | ||
42 | + "email": "theo.fidry@gmail.com" | ||
43 | + } | ||
19 | ], | 44 | ], |
20 | - "repository": "visionmedia/bytes.js", | 45 | + "deprecated": false, |
46 | + "description": "Utility to parse a string bytes to bytes and vice-versa", | ||
21 | "devDependencies": { | 47 | "devDependencies": { |
22 | "eslint": "5.12.1", | 48 | "eslint": "5.12.1", |
23 | "mocha": "5.2.0", | 49 | "mocha": "5.2.0", |
24 | "nyc": "13.1.0" | 50 | "nyc": "13.1.0" |
25 | }, | 51 | }, |
52 | + "engines": { | ||
53 | + "node": ">= 0.8" | ||
54 | + }, | ||
26 | "files": [ | 55 | "files": [ |
27 | "History.md", | 56 | "History.md", |
28 | "LICENSE", | 57 | "LICENSE", |
29 | "Readme.md", | 58 | "Readme.md", |
30 | "index.js" | 59 | "index.js" |
31 | ], | 60 | ], |
32 | - "engines": { | 61 | + "homepage": "https://github.com/visionmedia/bytes.js#readme", |
33 | - "node": ">= 0.8" | 62 | + "keywords": [ |
63 | + "byte", | ||
64 | + "bytes", | ||
65 | + "utility", | ||
66 | + "parse", | ||
67 | + "parser", | ||
68 | + "convert", | ||
69 | + "converter" | ||
70 | + ], | ||
71 | + "license": "MIT", | ||
72 | + "name": "bytes", | ||
73 | + "repository": { | ||
74 | + "type": "git", | ||
75 | + "url": "git+https://github.com/visionmedia/bytes.js.git" | ||
34 | }, | 76 | }, |
35 | "scripts": { | 77 | "scripts": { |
36 | "lint": "eslint .", | 78 | "lint": "eslint .", |
37 | "test": "mocha --check-leaks --reporter spec", | 79 | "test": "mocha --check-leaks --reporter spec", |
38 | "test-ci": "nyc --reporter=text npm test", | 80 | "test-ci": "nyc --reporter=text npm test", |
39 | "test-cov": "nyc --reporter=html --reporter=text npm test" | 81 | "test-cov": "nyc --reporter=html --reporter=text npm test" |
40 | - } | 82 | + }, |
83 | + "version": "3.1.0" | ||
41 | } | 84 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "content-disposition", | 2 | + "_args": [ |
3 | - "description": "Create and parse Content-Disposition header", | 3 | + [ |
4 | - "version": "0.5.3", | 4 | + "content-disposition@0.5.3", |
5 | - "author": "Douglas Christopher Wilson <doug@somethingdoug.com>", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "license": "MIT", | 6 | + ] |
7 | - "keywords": [ | 7 | + ], |
8 | - "content-disposition", | 8 | + "_from": "content-disposition@0.5.3", |
9 | - "http", | 9 | + "_id": "content-disposition@0.5.3", |
10 | - "rfc6266", | 10 | + "_inBundle": false, |
11 | - "res" | 11 | + "_integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", |
12 | + "_location": "/content-disposition", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "content-disposition@0.5.3", | ||
18 | + "name": "content-disposition", | ||
19 | + "escapedName": "content-disposition", | ||
20 | + "rawSpec": "0.5.3", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "0.5.3" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express" | ||
12 | ], | 26 | ], |
13 | - "repository": "jshttp/content-disposition", | 27 | + "_resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", |
28 | + "_spec": "0.5.3", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "author": { | ||
31 | + "name": "Douglas Christopher Wilson", | ||
32 | + "email": "doug@somethingdoug.com" | ||
33 | + }, | ||
34 | + "bugs": { | ||
35 | + "url": "https://github.com/jshttp/content-disposition/issues" | ||
36 | + }, | ||
14 | "dependencies": { | 37 | "dependencies": { |
15 | "safe-buffer": "5.1.2" | 38 | "safe-buffer": "5.1.2" |
16 | }, | 39 | }, |
40 | + "description": "Create and parse Content-Disposition header", | ||
17 | "devDependencies": { | 41 | "devDependencies": { |
18 | "deep-equal": "1.0.1", | 42 | "deep-equal": "1.0.1", |
19 | "eslint": "5.10.0", | 43 | "eslint": "5.10.0", |
... | @@ -26,19 +50,33 @@ | ... | @@ -26,19 +50,33 @@ |
26 | "istanbul": "0.4.5", | 50 | "istanbul": "0.4.5", |
27 | "mocha": "5.2.0" | 51 | "mocha": "5.2.0" |
28 | }, | 52 | }, |
53 | + "engines": { | ||
54 | + "node": ">= 0.6" | ||
55 | + }, | ||
29 | "files": [ | 56 | "files": [ |
30 | "LICENSE", | 57 | "LICENSE", |
31 | "HISTORY.md", | 58 | "HISTORY.md", |
32 | "README.md", | 59 | "README.md", |
33 | "index.js" | 60 | "index.js" |
34 | ], | 61 | ], |
35 | - "engines": { | 62 | + "homepage": "https://github.com/jshttp/content-disposition#readme", |
36 | - "node": ">= 0.6" | 63 | + "keywords": [ |
64 | + "content-disposition", | ||
65 | + "http", | ||
66 | + "rfc6266", | ||
67 | + "res" | ||
68 | + ], | ||
69 | + "license": "MIT", | ||
70 | + "name": "content-disposition", | ||
71 | + "repository": { | ||
72 | + "type": "git", | ||
73 | + "url": "git+https://github.com/jshttp/content-disposition.git" | ||
37 | }, | 74 | }, |
38 | "scripts": { | 75 | "scripts": { |
39 | "lint": "eslint --plugin markdown --ext js,md .", | 76 | "lint": "eslint --plugin markdown --ext js,md .", |
40 | "test": "mocha --reporter spec --bail --check-leaks test/", | 77 | "test": "mocha --reporter spec --bail --check-leaks test/", |
41 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", | 78 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", |
42 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" | 79 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" |
43 | - } | 80 | + }, |
81 | + "version": "0.5.3" | ||
44 | } | 82 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "content-type", | 2 | + "_args": [ |
3 | - "description": "Create and parse HTTP Content-Type header", | 3 | + [ |
4 | - "version": "1.0.4", | 4 | + "content-type@1.0.4", |
5 | - "author": "Douglas Christopher Wilson <doug@somethingdoug.com>", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "license": "MIT", | 6 | + ] |
7 | - "keywords": [ | 7 | + ], |
8 | - "content-type", | 8 | + "_from": "content-type@1.0.4", |
9 | - "http", | 9 | + "_id": "content-type@1.0.4", |
10 | - "req", | 10 | + "_inBundle": false, |
11 | - "res", | 11 | + "_integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", |
12 | - "rfc7231" | 12 | + "_location": "/content-type", |
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "content-type@1.0.4", | ||
18 | + "name": "content-type", | ||
19 | + "escapedName": "content-type", | ||
20 | + "rawSpec": "1.0.4", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.0.4" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/body-parser", | ||
26 | + "/express" | ||
13 | ], | 27 | ], |
14 | - "repository": "jshttp/content-type", | 28 | + "_resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", |
29 | + "_spec": "1.0.4", | ||
30 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
31 | + "author": { | ||
32 | + "name": "Douglas Christopher Wilson", | ||
33 | + "email": "doug@somethingdoug.com" | ||
34 | + }, | ||
35 | + "bugs": { | ||
36 | + "url": "https://github.com/jshttp/content-type/issues" | ||
37 | + }, | ||
38 | + "description": "Create and parse HTTP Content-Type header", | ||
15 | "devDependencies": { | 39 | "devDependencies": { |
16 | "eslint": "3.19.0", | 40 | "eslint": "3.19.0", |
17 | "eslint-config-standard": "10.2.1", | 41 | "eslint-config-standard": "10.2.1", |
... | @@ -22,19 +46,34 @@ | ... | @@ -22,19 +46,34 @@ |
22 | "istanbul": "0.4.5", | 46 | "istanbul": "0.4.5", |
23 | "mocha": "~1.21.5" | 47 | "mocha": "~1.21.5" |
24 | }, | 48 | }, |
49 | + "engines": { | ||
50 | + "node": ">= 0.6" | ||
51 | + }, | ||
25 | "files": [ | 52 | "files": [ |
26 | "LICENSE", | 53 | "LICENSE", |
27 | "HISTORY.md", | 54 | "HISTORY.md", |
28 | "README.md", | 55 | "README.md", |
29 | "index.js" | 56 | "index.js" |
30 | ], | 57 | ], |
31 | - "engines": { | 58 | + "homepage": "https://github.com/jshttp/content-type#readme", |
32 | - "node": ">= 0.6" | 59 | + "keywords": [ |
60 | + "content-type", | ||
61 | + "http", | ||
62 | + "req", | ||
63 | + "res", | ||
64 | + "rfc7231" | ||
65 | + ], | ||
66 | + "license": "MIT", | ||
67 | + "name": "content-type", | ||
68 | + "repository": { | ||
69 | + "type": "git", | ||
70 | + "url": "git+https://github.com/jshttp/content-type.git" | ||
33 | }, | 71 | }, |
34 | "scripts": { | 72 | "scripts": { |
35 | "lint": "eslint .", | 73 | "lint": "eslint .", |
36 | "test": "mocha --reporter spec --check-leaks --bail test/", | 74 | "test": "mocha --reporter spec --check-leaks --bail test/", |
37 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", | 75 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", |
38 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/" | 76 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/" |
39 | - } | 77 | + }, |
78 | + "version": "1.0.4" | ||
40 | } | 79 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "cookie-signature", | 2 | + "_args": [ |
3 | - "version": "1.0.6", | 3 | + [ |
4 | - "description": "Sign and unsign cookies", | 4 | + "cookie-signature@1.0.6", |
5 | - "keywords": ["cookie", "sign", "unsign"], | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "author": "TJ Holowaychuk <tj@learnboost.com>", | 6 | + ] |
7 | - "license": "MIT", | 7 | + ], |
8 | - "repository": { "type": "git", "url": "https://github.com/visionmedia/node-cookie-signature.git"}, | 8 | + "_from": "cookie-signature@1.0.6", |
9 | + "_id": "cookie-signature@1.0.6", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", | ||
12 | + "_location": "/cookie-signature", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "cookie-signature@1.0.6", | ||
18 | + "name": "cookie-signature", | ||
19 | + "escapedName": "cookie-signature", | ||
20 | + "rawSpec": "1.0.6", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.0.6" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", | ||
28 | + "_spec": "1.0.6", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "author": { | ||
31 | + "name": "TJ Holowaychuk", | ||
32 | + "email": "tj@learnboost.com" | ||
33 | + }, | ||
34 | + "bugs": { | ||
35 | + "url": "https://github.com/visionmedia/node-cookie-signature/issues" | ||
36 | + }, | ||
9 | "dependencies": {}, | 37 | "dependencies": {}, |
38 | + "description": "Sign and unsign cookies", | ||
10 | "devDependencies": { | 39 | "devDependencies": { |
11 | "mocha": "*", | 40 | "mocha": "*", |
12 | "should": "*" | 41 | "should": "*" |
13 | }, | 42 | }, |
43 | + "homepage": "https://github.com/visionmedia/node-cookie-signature#readme", | ||
44 | + "keywords": [ | ||
45 | + "cookie", | ||
46 | + "sign", | ||
47 | + "unsign" | ||
48 | + ], | ||
49 | + "license": "MIT", | ||
50 | + "main": "index", | ||
51 | + "name": "cookie-signature", | ||
52 | + "repository": { | ||
53 | + "type": "git", | ||
54 | + "url": "git+https://github.com/visionmedia/node-cookie-signature.git" | ||
55 | + }, | ||
14 | "scripts": { | 56 | "scripts": { |
15 | "test": "mocha --require should --reporter spec" | 57 | "test": "mocha --require should --reporter spec" |
16 | }, | 58 | }, |
17 | - "main": "index" | 59 | + "version": "1.0.6" |
18 | } | 60 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "cookie", | 2 | + "_args": [ |
3 | - "description": "HTTP server cookie parsing and serialization", | 3 | + [ |
4 | - "version": "0.4.0", | 4 | + "cookie@0.4.0", |
5 | - "author": "Roman Shtylman <shtylman@gmail.com>", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "contributors": [ | 6 | + ] |
7 | - "Douglas Christopher Wilson <doug@somethingdoug.com>" | ||
8 | ], | 7 | ], |
9 | - "license": "MIT", | 8 | + "_from": "cookie@0.4.0", |
10 | - "keywords": [ | 9 | + "_id": "cookie@0.4.0", |
11 | - "cookie", | 10 | + "_inBundle": false, |
12 | - "cookies" | 11 | + "_integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", |
12 | + "_location": "/cookie", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "cookie@0.4.0", | ||
18 | + "name": "cookie", | ||
19 | + "escapedName": "cookie", | ||
20 | + "rawSpec": "0.4.0", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "0.4.0" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", | ||
28 | + "_spec": "0.4.0", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "author": { | ||
31 | + "name": "Roman Shtylman", | ||
32 | + "email": "shtylman@gmail.com" | ||
33 | + }, | ||
34 | + "bugs": { | ||
35 | + "url": "https://github.com/jshttp/cookie/issues" | ||
36 | + }, | ||
37 | + "contributors": [ | ||
38 | + { | ||
39 | + "name": "Douglas Christopher Wilson", | ||
40 | + "email": "doug@somethingdoug.com" | ||
41 | + } | ||
13 | ], | 42 | ], |
14 | - "repository": "jshttp/cookie", | 43 | + "description": "HTTP server cookie parsing and serialization", |
15 | "devDependencies": { | 44 | "devDependencies": { |
16 | "beautify-benchmark": "0.2.4", | 45 | "beautify-benchmark": "0.2.4", |
17 | "benchmark": "2.1.4", | 46 | "benchmark": "2.1.4", |
... | @@ -20,14 +49,25 @@ | ... | @@ -20,14 +49,25 @@ |
20 | "istanbul": "0.4.5", | 49 | "istanbul": "0.4.5", |
21 | "mocha": "6.1.4" | 50 | "mocha": "6.1.4" |
22 | }, | 51 | }, |
52 | + "engines": { | ||
53 | + "node": ">= 0.6" | ||
54 | + }, | ||
23 | "files": [ | 55 | "files": [ |
24 | "HISTORY.md", | 56 | "HISTORY.md", |
25 | "LICENSE", | 57 | "LICENSE", |
26 | "README.md", | 58 | "README.md", |
27 | "index.js" | 59 | "index.js" |
28 | ], | 60 | ], |
29 | - "engines": { | 61 | + "homepage": "https://github.com/jshttp/cookie#readme", |
30 | - "node": ">= 0.6" | 62 | + "keywords": [ |
63 | + "cookie", | ||
64 | + "cookies" | ||
65 | + ], | ||
66 | + "license": "MIT", | ||
67 | + "name": "cookie", | ||
68 | + "repository": { | ||
69 | + "type": "git", | ||
70 | + "url": "git+https://github.com/jshttp/cookie.git" | ||
31 | }, | 71 | }, |
32 | "scripts": { | 72 | "scripts": { |
33 | "bench": "node benchmark/index.js", | 73 | "bench": "node benchmark/index.js", |
... | @@ -36,5 +76,6 @@ | ... | @@ -36,5 +76,6 @@ |
36 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", | 76 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", |
37 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", | 77 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", |
38 | "version": "node scripts/version-history.js && git add HISTORY.md" | 78 | "version": "node scripts/version-history.js && git add HISTORY.md" |
39 | - } | 79 | + }, |
80 | + "version": "0.4.0" | ||
40 | } | 81 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "core-util-is", | 2 | + "_args": [ |
3 | - "version": "1.0.2", | 3 | + [ |
4 | + "core-util-is@1.0.2", | ||
5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" | ||
6 | + ] | ||
7 | + ], | ||
8 | + "_from": "core-util-is@1.0.2", | ||
9 | + "_id": "core-util-is@1.0.2", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", | ||
12 | + "_location": "/core-util-is", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "core-util-is@1.0.2", | ||
18 | + "name": "core-util-is", | ||
19 | + "escapedName": "core-util-is", | ||
20 | + "rawSpec": "1.0.2", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.0.2" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/readable-stream" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", | ||
28 | + "_spec": "1.0.2", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "author": { | ||
31 | + "name": "Isaac Z. Schlueter", | ||
32 | + "email": "i@izs.me", | ||
33 | + "url": "http://blog.izs.me/" | ||
34 | + }, | ||
35 | + "bugs": { | ||
36 | + "url": "https://github.com/isaacs/core-util-is/issues" | ||
37 | + }, | ||
4 | "description": "The `util.is*` functions introduced in Node v0.12.", | 38 | "description": "The `util.is*` functions introduced in Node v0.12.", |
5 | - "main": "lib/util.js", | 39 | + "devDependencies": { |
6 | - "repository": { | 40 | + "tap": "^2.3.0" |
7 | - "type": "git", | ||
8 | - "url": "git://github.com/isaacs/core-util-is" | ||
9 | }, | 41 | }, |
42 | + "homepage": "https://github.com/isaacs/core-util-is#readme", | ||
10 | "keywords": [ | 43 | "keywords": [ |
11 | "util", | 44 | "util", |
12 | "isBuffer", | 45 | "isBuffer", |
... | @@ -18,15 +51,15 @@ | ... | @@ -18,15 +51,15 @@ |
18 | "isThat", | 51 | "isThat", |
19 | "polyfill" | 52 | "polyfill" |
20 | ], | 53 | ], |
21 | - "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)", | ||
22 | "license": "MIT", | 54 | "license": "MIT", |
23 | - "bugs": { | 55 | + "main": "lib/util.js", |
24 | - "url": "https://github.com/isaacs/core-util-is/issues" | 56 | + "name": "core-util-is", |
57 | + "repository": { | ||
58 | + "type": "git", | ||
59 | + "url": "git://github.com/isaacs/core-util-is.git" | ||
25 | }, | 60 | }, |
26 | "scripts": { | 61 | "scripts": { |
27 | "test": "tap test.js" | 62 | "test": "tap test.js" |
28 | }, | 63 | }, |
29 | - "devDependencies": { | 64 | + "version": "1.0.2" |
30 | - "tap": "^2.3.0" | ||
31 | - } | ||
32 | } | 65 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "debug", | 2 | + "_args": [ |
3 | - "version": "2.6.9", | 3 | + [ |
4 | - "repository": { | 4 | + "debug@2.6.9", |
5 | - "type": "git", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "url": "git://github.com/visionmedia/debug.git" | 6 | + ] |
7 | + ], | ||
8 | + "_from": "debug@2.6.9", | ||
9 | + "_id": "debug@2.6.9", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", | ||
12 | + "_location": "/debug", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "debug@2.6.9", | ||
18 | + "name": "debug", | ||
19 | + "escapedName": "debug", | ||
20 | + "rawSpec": "2.6.9", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "2.6.9" | ||
7 | }, | 23 | }, |
8 | - "description": "small debugging utility", | 24 | + "_requiredBy": [ |
9 | - "keywords": [ | 25 | + "/body-parser", |
10 | - "debug", | 26 | + "/express", |
11 | - "log", | 27 | + "/finalhandler", |
12 | - "debugger" | 28 | + "/send" |
13 | ], | 29 | ], |
14 | - "author": "TJ Holowaychuk <tj@vision-media.ca>", | 30 | + "_resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", |
31 | + "_spec": "2.6.9", | ||
32 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
33 | + "author": { | ||
34 | + "name": "TJ Holowaychuk", | ||
35 | + "email": "tj@vision-media.ca" | ||
36 | + }, | ||
37 | + "browser": "./src/browser.js", | ||
38 | + "bugs": { | ||
39 | + "url": "https://github.com/visionmedia/debug/issues" | ||
40 | + }, | ||
41 | + "component": { | ||
42 | + "scripts": { | ||
43 | + "debug/index.js": "browser.js", | ||
44 | + "debug/debug.js": "debug.js" | ||
45 | + } | ||
46 | + }, | ||
15 | "contributors": [ | 47 | "contributors": [ |
16 | - "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io)", | 48 | + { |
17 | - "Andrew Rhyne <rhyneandrew@gmail.com>" | 49 | + "name": "Nathan Rajlich", |
50 | + "email": "nathan@tootallnate.net", | ||
51 | + "url": "http://n8.io" | ||
52 | + }, | ||
53 | + { | ||
54 | + "name": "Andrew Rhyne", | ||
55 | + "email": "rhyneandrew@gmail.com" | ||
56 | + } | ||
18 | ], | 57 | ], |
19 | - "license": "MIT", | ||
20 | "dependencies": { | 58 | "dependencies": { |
21 | "ms": "2.0.0" | 59 | "ms": "2.0.0" |
22 | }, | 60 | }, |
61 | + "description": "small debugging utility", | ||
23 | "devDependencies": { | 62 | "devDependencies": { |
24 | "browserify": "9.0.3", | 63 | "browserify": "9.0.3", |
25 | "chai": "^3.5.0", | 64 | "chai": "^3.5.0", |
... | @@ -38,12 +77,18 @@ | ... | @@ -38,12 +77,18 @@ |
38 | "sinon": "^1.17.6", | 77 | "sinon": "^1.17.6", |
39 | "sinon-chai": "^2.8.0" | 78 | "sinon-chai": "^2.8.0" |
40 | }, | 79 | }, |
80 | + "homepage": "https://github.com/visionmedia/debug#readme", | ||
81 | + "keywords": [ | ||
82 | + "debug", | ||
83 | + "log", | ||
84 | + "debugger" | ||
85 | + ], | ||
86 | + "license": "MIT", | ||
41 | "main": "./src/index.js", | 87 | "main": "./src/index.js", |
42 | - "browser": "./src/browser.js", | 88 | + "name": "debug", |
43 | - "component": { | 89 | + "repository": { |
44 | - "scripts": { | 90 | + "type": "git", |
45 | - "debug/index.js": "browser.js", | 91 | + "url": "git://github.com/visionmedia/debug.git" |
46 | - "debug/debug.js": "debug.js" | 92 | + }, |
47 | - } | 93 | + "version": "2.6.9" |
48 | - } | ||
49 | } | 94 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "depd", | 2 | + "_args": [ |
3 | - "description": "Deprecate all the things", | 3 | + [ |
4 | - "version": "1.1.2", | 4 | + "depd@1.1.2", |
5 | - "author": "Douglas Christopher Wilson <doug@somethingdoug.com>", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "license": "MIT", | 6 | + ] |
7 | - "keywords": [ | ||
8 | - "deprecate", | ||
9 | - "deprecated" | ||
10 | ], | 7 | ], |
11 | - "repository": "dougwilson/nodejs-depd", | 8 | + "_from": "depd@1.1.2", |
9 | + "_id": "depd@1.1.2", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", | ||
12 | + "_location": "/depd", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "depd@1.1.2", | ||
18 | + "name": "depd", | ||
19 | + "escapedName": "depd", | ||
20 | + "rawSpec": "1.1.2", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.1.2" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/body-parser", | ||
26 | + "/express", | ||
27 | + "/http-errors", | ||
28 | + "/send" | ||
29 | + ], | ||
30 | + "_resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", | ||
31 | + "_spec": "1.1.2", | ||
32 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
33 | + "author": { | ||
34 | + "name": "Douglas Christopher Wilson", | ||
35 | + "email": "doug@somethingdoug.com" | ||
36 | + }, | ||
12 | "browser": "lib/browser/index.js", | 37 | "browser": "lib/browser/index.js", |
38 | + "bugs": { | ||
39 | + "url": "https://github.com/dougwilson/nodejs-depd/issues" | ||
40 | + }, | ||
41 | + "description": "Deprecate all the things", | ||
13 | "devDependencies": { | 42 | "devDependencies": { |
14 | - "benchmark": "2.1.4", | ||
15 | "beautify-benchmark": "0.2.4", | 43 | "beautify-benchmark": "0.2.4", |
44 | + "benchmark": "2.1.4", | ||
16 | "eslint": "3.19.0", | 45 | "eslint": "3.19.0", |
17 | "eslint-config-standard": "7.1.0", | 46 | "eslint-config-standard": "7.1.0", |
18 | "eslint-plugin-markdown": "1.0.0-beta.7", | 47 | "eslint-plugin-markdown": "1.0.0-beta.7", |
... | @@ -21,6 +50,9 @@ | ... | @@ -21,6 +50,9 @@ |
21 | "istanbul": "0.4.5", | 50 | "istanbul": "0.4.5", |
22 | "mocha": "~1.21.5" | 51 | "mocha": "~1.21.5" |
23 | }, | 52 | }, |
53 | + "engines": { | ||
54 | + "node": ">= 0.6" | ||
55 | + }, | ||
24 | "files": [ | 56 | "files": [ |
25 | "lib/", | 57 | "lib/", |
26 | "History.md", | 58 | "History.md", |
... | @@ -28,8 +60,16 @@ | ... | @@ -28,8 +60,16 @@ |
28 | "index.js", | 60 | "index.js", |
29 | "Readme.md" | 61 | "Readme.md" |
30 | ], | 62 | ], |
31 | - "engines": { | 63 | + "homepage": "https://github.com/dougwilson/nodejs-depd#readme", |
32 | - "node": ">= 0.6" | 64 | + "keywords": [ |
65 | + "deprecate", | ||
66 | + "deprecated" | ||
67 | + ], | ||
68 | + "license": "MIT", | ||
69 | + "name": "depd", | ||
70 | + "repository": { | ||
71 | + "type": "git", | ||
72 | + "url": "git+https://github.com/dougwilson/nodejs-depd.git" | ||
33 | }, | 73 | }, |
34 | "scripts": { | 74 | "scripts": { |
35 | "bench": "node benchmark/index.js", | 75 | "bench": "node benchmark/index.js", |
... | @@ -37,5 +77,6 @@ | ... | @@ -37,5 +77,6 @@ |
37 | "test": "mocha --reporter spec --bail test/", | 77 | "test": "mocha --reporter spec --bail test/", |
38 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --no-exit test/", | 78 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --no-exit test/", |
39 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/" | 79 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/" |
40 | - } | 80 | + }, |
81 | + "version": "1.1.2" | ||
41 | } | 82 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "destroy", | 2 | + "_args": [ |
3 | - "description": "destroy a stream if possible", | 3 | + [ |
4 | - "version": "1.0.4", | 4 | + "destroy@1.0.4", |
5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" | ||
6 | + ] | ||
7 | + ], | ||
8 | + "_from": "destroy@1.0.4", | ||
9 | + "_id": "destroy@1.0.4", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", | ||
12 | + "_location": "/destroy", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "destroy@1.0.4", | ||
18 | + "name": "destroy", | ||
19 | + "escapedName": "destroy", | ||
20 | + "rawSpec": "1.0.4", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.0.4" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/send" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", | ||
28 | + "_spec": "1.0.4", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
5 | "author": { | 30 | "author": { |
6 | "name": "Jonathan Ong", | 31 | "name": "Jonathan Ong", |
7 | "email": "me@jongleberry.com", | 32 | "email": "me@jongleberry.com", |
8 | - "url": "http://jongleberry.com", | 33 | + "url": "http://jongleberry.com" |
9 | - "twitter": "https://twitter.com/jongleberry" | 34 | + }, |
35 | + "bugs": { | ||
36 | + "url": "https://github.com/stream-utils/destroy/issues" | ||
10 | }, | 37 | }, |
11 | "contributors": [ | 38 | "contributors": [ |
12 | - "Douglas Christopher Wilson <doug@somethingdoug.com>" | 39 | + { |
40 | + "name": "Douglas Christopher Wilson", | ||
41 | + "email": "doug@somethingdoug.com" | ||
42 | + } | ||
13 | ], | 43 | ], |
14 | - "license": "MIT", | 44 | + "description": "destroy a stream if possible", |
15 | - "repository": "stream-utils/destroy", | ||
16 | "devDependencies": { | 45 | "devDependencies": { |
17 | "istanbul": "0.4.2", | 46 | "istanbul": "0.4.2", |
18 | "mocha": "2.3.4" | 47 | "mocha": "2.3.4" |
19 | }, | 48 | }, |
20 | - "scripts": { | ||
21 | - "test": "mocha --reporter spec", | ||
22 | - "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot", | ||
23 | - "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot" | ||
24 | - }, | ||
25 | "files": [ | 49 | "files": [ |
26 | "index.js", | 50 | "index.js", |
27 | "LICENSE" | 51 | "LICENSE" |
28 | ], | 52 | ], |
53 | + "homepage": "https://github.com/stream-utils/destroy#readme", | ||
29 | "keywords": [ | 54 | "keywords": [ |
30 | "stream", | 55 | "stream", |
31 | "streams", | 56 | "streams", |
... | @@ -33,5 +58,17 @@ | ... | @@ -33,5 +58,17 @@ |
33 | "cleanup", | 58 | "cleanup", |
34 | "leak", | 59 | "leak", |
35 | "fd" | 60 | "fd" |
36 | - ] | 61 | + ], |
62 | + "license": "MIT", | ||
63 | + "name": "destroy", | ||
64 | + "repository": { | ||
65 | + "type": "git", | ||
66 | + "url": "git+https://github.com/stream-utils/destroy.git" | ||
67 | + }, | ||
68 | + "scripts": { | ||
69 | + "test": "mocha --reporter spec", | ||
70 | + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot", | ||
71 | + "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot" | ||
72 | + }, | ||
73 | + "version": "1.0.4" | ||
37 | } | 74 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "ee-first", | 2 | + "_args": [ |
3 | - "description": "return the first event in a set of ee/event pairs", | 3 | + [ |
4 | - "version": "1.1.1", | 4 | + "ee-first@1.1.1", |
5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" | ||
6 | + ] | ||
7 | + ], | ||
8 | + "_from": "ee-first@1.1.1", | ||
9 | + "_id": "ee-first@1.1.1", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", | ||
12 | + "_location": "/ee-first", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "ee-first@1.1.1", | ||
18 | + "name": "ee-first", | ||
19 | + "escapedName": "ee-first", | ||
20 | + "rawSpec": "1.1.1", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.1.1" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/on-finished" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", | ||
28 | + "_spec": "1.1.1", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
5 | "author": { | 30 | "author": { |
6 | "name": "Jonathan Ong", | 31 | "name": "Jonathan Ong", |
7 | "email": "me@jongleberry.com", | 32 | "email": "me@jongleberry.com", |
8 | - "url": "http://jongleberry.com", | 33 | + "url": "http://jongleberry.com" |
9 | - "twitter": "https://twitter.com/jongleberry" | 34 | + }, |
35 | + "bugs": { | ||
36 | + "url": "https://github.com/jonathanong/ee-first/issues" | ||
10 | }, | 37 | }, |
11 | "contributors": [ | 38 | "contributors": [ |
12 | - "Douglas Christopher Wilson <doug@somethingdoug.com>" | 39 | + { |
40 | + "name": "Douglas Christopher Wilson", | ||
41 | + "email": "doug@somethingdoug.com" | ||
42 | + } | ||
13 | ], | 43 | ], |
14 | - "license": "MIT", | 44 | + "description": "return the first event in a set of ee/event pairs", |
15 | - "repository": "jonathanong/ee-first", | ||
16 | "devDependencies": { | 45 | "devDependencies": { |
17 | "istanbul": "0.3.9", | 46 | "istanbul": "0.3.9", |
18 | "mocha": "2.2.5" | 47 | "mocha": "2.2.5" |
... | @@ -21,9 +50,17 @@ | ... | @@ -21,9 +50,17 @@ |
21 | "index.js", | 50 | "index.js", |
22 | "LICENSE" | 51 | "LICENSE" |
23 | ], | 52 | ], |
53 | + "homepage": "https://github.com/jonathanong/ee-first#readme", | ||
54 | + "license": "MIT", | ||
55 | + "name": "ee-first", | ||
56 | + "repository": { | ||
57 | + "type": "git", | ||
58 | + "url": "git+https://github.com/jonathanong/ee-first.git" | ||
59 | + }, | ||
24 | "scripts": { | 60 | "scripts": { |
25 | "test": "mocha --reporter spec --bail --check-leaks test/", | 61 | "test": "mocha --reporter spec --bail --check-leaks test/", |
26 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", | 62 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", |
27 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" | 63 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" |
28 | - } | 64 | + }, |
65 | + "version": "1.1.1" | ||
29 | } | 66 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "encodeurl", | 2 | + "_args": [ |
3 | - "description": "Encode a URL to a percent-encoded form, excluding already-encoded sequences", | 3 | + [ |
4 | - "version": "1.0.2", | 4 | + "encodeurl@1.0.2", |
5 | - "contributors": [ | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "Douglas Christopher Wilson <doug@somethingdoug.com>" | 6 | + ] |
7 | ], | 7 | ], |
8 | - "license": "MIT", | 8 | + "_from": "encodeurl@1.0.2", |
9 | - "keywords": [ | 9 | + "_id": "encodeurl@1.0.2", |
10 | - "encode", | 10 | + "_inBundle": false, |
11 | - "encodeurl", | 11 | + "_integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", |
12 | - "url" | 12 | + "_location": "/encodeurl", |
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "encodeurl@1.0.2", | ||
18 | + "name": "encodeurl", | ||
19 | + "escapedName": "encodeurl", | ||
20 | + "rawSpec": "1.0.2", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.0.2" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express", | ||
26 | + "/finalhandler", | ||
27 | + "/send", | ||
28 | + "/serve-static" | ||
29 | + ], | ||
30 | + "_resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", | ||
31 | + "_spec": "1.0.2", | ||
32 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
33 | + "bugs": { | ||
34 | + "url": "https://github.com/pillarjs/encodeurl/issues" | ||
35 | + }, | ||
36 | + "contributors": [ | ||
37 | + { | ||
38 | + "name": "Douglas Christopher Wilson", | ||
39 | + "email": "doug@somethingdoug.com" | ||
40 | + } | ||
13 | ], | 41 | ], |
14 | - "repository": "pillarjs/encodeurl", | 42 | + "description": "Encode a URL to a percent-encoded form, excluding already-encoded sequences", |
15 | "devDependencies": { | 43 | "devDependencies": { |
16 | "eslint": "3.19.0", | 44 | "eslint": "3.19.0", |
17 | "eslint-config-standard": "10.2.1", | 45 | "eslint-config-standard": "10.2.1", |
... | @@ -22,19 +50,32 @@ | ... | @@ -22,19 +50,32 @@ |
22 | "istanbul": "0.4.5", | 50 | "istanbul": "0.4.5", |
23 | "mocha": "2.5.3" | 51 | "mocha": "2.5.3" |
24 | }, | 52 | }, |
53 | + "engines": { | ||
54 | + "node": ">= 0.8" | ||
55 | + }, | ||
25 | "files": [ | 56 | "files": [ |
26 | "LICENSE", | 57 | "LICENSE", |
27 | "HISTORY.md", | 58 | "HISTORY.md", |
28 | "README.md", | 59 | "README.md", |
29 | "index.js" | 60 | "index.js" |
30 | ], | 61 | ], |
31 | - "engines": { | 62 | + "homepage": "https://github.com/pillarjs/encodeurl#readme", |
32 | - "node": ">= 0.8" | 63 | + "keywords": [ |
64 | + "encode", | ||
65 | + "encodeurl", | ||
66 | + "url" | ||
67 | + ], | ||
68 | + "license": "MIT", | ||
69 | + "name": "encodeurl", | ||
70 | + "repository": { | ||
71 | + "type": "git", | ||
72 | + "url": "git+https://github.com/pillarjs/encodeurl.git" | ||
33 | }, | 73 | }, |
34 | "scripts": { | 74 | "scripts": { |
35 | "lint": "eslint .", | 75 | "lint": "eslint .", |
36 | "test": "mocha --reporter spec --bail --check-leaks test/", | 76 | "test": "mocha --reporter spec --bail --check-leaks test/", |
37 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", | 77 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", |
38 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" | 78 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" |
39 | - } | 79 | + }, |
80 | + "version": "1.0.2" | ||
40 | } | 81 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "escape-html", | 2 | + "_args": [ |
3 | - "description": "Escape string for use in HTML", | 3 | + [ |
4 | - "version": "1.0.3", | 4 | + "escape-html@1.0.3", |
5 | - "license": "MIT", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "keywords": [ | 6 | + ] |
7 | - "escape", | ||
8 | - "html", | ||
9 | - "utility" | ||
10 | ], | 7 | ], |
11 | - "repository": "component/escape-html", | 8 | + "_from": "escape-html@1.0.3", |
9 | + "_id": "escape-html@1.0.3", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", | ||
12 | + "_location": "/escape-html", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "escape-html@1.0.3", | ||
18 | + "name": "escape-html", | ||
19 | + "escapedName": "escape-html", | ||
20 | + "rawSpec": "1.0.3", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.0.3" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express", | ||
26 | + "/finalhandler", | ||
27 | + "/send", | ||
28 | + "/serve-static" | ||
29 | + ], | ||
30 | + "_resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", | ||
31 | + "_spec": "1.0.3", | ||
32 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
33 | + "bugs": { | ||
34 | + "url": "https://github.com/component/escape-html/issues" | ||
35 | + }, | ||
36 | + "description": "Escape string for use in HTML", | ||
12 | "devDependencies": { | 37 | "devDependencies": { |
13 | - "benchmark": "1.0.0", | 38 | + "beautify-benchmark": "0.2.4", |
14 | - "beautify-benchmark": "0.2.4" | 39 | + "benchmark": "1.0.0" |
15 | }, | 40 | }, |
16 | "files": [ | 41 | "files": [ |
17 | "LICENSE", | 42 | "LICENSE", |
18 | "Readme.md", | 43 | "Readme.md", |
19 | "index.js" | 44 | "index.js" |
20 | ], | 45 | ], |
46 | + "homepage": "https://github.com/component/escape-html#readme", | ||
47 | + "keywords": [ | ||
48 | + "escape", | ||
49 | + "html", | ||
50 | + "utility" | ||
51 | + ], | ||
52 | + "license": "MIT", | ||
53 | + "name": "escape-html", | ||
54 | + "repository": { | ||
55 | + "type": "git", | ||
56 | + "url": "git+https://github.com/component/escape-html.git" | ||
57 | + }, | ||
21 | "scripts": { | 58 | "scripts": { |
22 | "bench": "node benchmark/index.js" | 59 | "bench": "node benchmark/index.js" |
23 | - } | 60 | + }, |
61 | + "version": "1.0.3" | ||
24 | } | 62 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "etag", | 2 | + "_args": [ |
3 | - "description": "Create simple HTTP ETags", | 3 | + [ |
4 | - "version": "1.8.1", | 4 | + "etag@1.8.1", |
5 | - "contributors": [ | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | 6 | + ] |
7 | - "David Björklund <david.bjorklund@gmail.com>" | ||
8 | ], | 7 | ], |
9 | - "license": "MIT", | 8 | + "_from": "etag@1.8.1", |
10 | - "keywords": [ | 9 | + "_id": "etag@1.8.1", |
11 | - "etag", | 10 | + "_inBundle": false, |
12 | - "http", | 11 | + "_integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", |
13 | - "res" | 12 | + "_location": "/etag", |
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "etag@1.8.1", | ||
18 | + "name": "etag", | ||
19 | + "escapedName": "etag", | ||
20 | + "rawSpec": "1.8.1", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.8.1" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express", | ||
26 | + "/send" | ||
27 | + ], | ||
28 | + "_resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", | ||
29 | + "_spec": "1.8.1", | ||
30 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
31 | + "bugs": { | ||
32 | + "url": "https://github.com/jshttp/etag/issues" | ||
33 | + }, | ||
34 | + "contributors": [ | ||
35 | + { | ||
36 | + "name": "Douglas Christopher Wilson", | ||
37 | + "email": "doug@somethingdoug.com" | ||
38 | + }, | ||
39 | + { | ||
40 | + "name": "David Björklund", | ||
41 | + "email": "david.bjorklund@gmail.com" | ||
42 | + } | ||
14 | ], | 43 | ], |
15 | - "repository": "jshttp/etag", | 44 | + "description": "Create simple HTTP ETags", |
16 | "devDependencies": { | 45 | "devDependencies": { |
17 | "beautify-benchmark": "0.2.4", | 46 | "beautify-benchmark": "0.2.4", |
18 | "benchmark": "2.1.4", | 47 | "benchmark": "2.1.4", |
... | @@ -28,14 +57,26 @@ | ... | @@ -28,14 +57,26 @@ |
28 | "safe-buffer": "5.1.1", | 57 | "safe-buffer": "5.1.1", |
29 | "seedrandom": "2.4.3" | 58 | "seedrandom": "2.4.3" |
30 | }, | 59 | }, |
60 | + "engines": { | ||
61 | + "node": ">= 0.6" | ||
62 | + }, | ||
31 | "files": [ | 63 | "files": [ |
32 | "LICENSE", | 64 | "LICENSE", |
33 | "HISTORY.md", | 65 | "HISTORY.md", |
34 | "README.md", | 66 | "README.md", |
35 | "index.js" | 67 | "index.js" |
36 | ], | 68 | ], |
37 | - "engines": { | 69 | + "homepage": "https://github.com/jshttp/etag#readme", |
38 | - "node": ">= 0.6" | 70 | + "keywords": [ |
71 | + "etag", | ||
72 | + "http", | ||
73 | + "res" | ||
74 | + ], | ||
75 | + "license": "MIT", | ||
76 | + "name": "etag", | ||
77 | + "repository": { | ||
78 | + "type": "git", | ||
79 | + "url": "git+https://github.com/jshttp/etag.git" | ||
39 | }, | 80 | }, |
40 | "scripts": { | 81 | "scripts": { |
41 | "bench": "node benchmark/index.js", | 82 | "bench": "node benchmark/index.js", |
... | @@ -43,5 +84,6 @@ | ... | @@ -43,5 +84,6 @@ |
43 | "test": "mocha --reporter spec --bail --check-leaks test/", | 84 | "test": "mocha --reporter spec --bail --check-leaks test/", |
44 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", | 85 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", |
45 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" | 86 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" |
46 | - } | 87 | + }, |
88 | + "version": "1.8.1" | ||
47 | } | 89 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "express", | 2 | + "_args": [ |
3 | - "description": "Fast, unopinionated, minimalist web framework", | 3 | + [ |
4 | - "version": "4.17.1", | 4 | + "express@4.17.1", |
5 | - "author": "TJ Holowaychuk <tj@vision-media.ca>", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "contributors": [ | 6 | + ] |
7 | - "Aaron Heckmann <aaron.heckmann+github@gmail.com>", | ||
8 | - "Ciaran Jessup <ciaranj@gmail.com>", | ||
9 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | ||
10 | - "Guillermo Rauch <rauchg@gmail.com>", | ||
11 | - "Jonathan Ong <me@jongleberry.com>", | ||
12 | - "Roman Shtylman <shtylman+expressjs@gmail.com>", | ||
13 | - "Young Jae Sim <hanul@hanul.me>" | ||
14 | ], | 7 | ], |
15 | - "license": "MIT", | 8 | + "_from": "express@4.17.1", |
16 | - "repository": "expressjs/express", | 9 | + "_id": "express@4.17.1", |
17 | - "homepage": "http://expressjs.com/", | 10 | + "_inBundle": false, |
18 | - "keywords": [ | 11 | + "_integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", |
19 | - "express", | 12 | + "_location": "/express", |
20 | - "framework", | 13 | + "_phantomChildren": {}, |
21 | - "sinatra", | 14 | + "_requested": { |
22 | - "web", | 15 | + "type": "version", |
23 | - "rest", | 16 | + "registry": true, |
24 | - "restful", | 17 | + "raw": "express@4.17.1", |
25 | - "router", | 18 | + "name": "express", |
26 | - "app", | 19 | + "escapedName": "express", |
27 | - "api" | 20 | + "rawSpec": "4.17.1", |
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "4.17.1" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", | ||
28 | + "_spec": "4.17.1", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "author": { | ||
31 | + "name": "TJ Holowaychuk", | ||
32 | + "email": "tj@vision-media.ca" | ||
33 | + }, | ||
34 | + "bugs": { | ||
35 | + "url": "https://github.com/expressjs/express/issues" | ||
36 | + }, | ||
37 | + "contributors": [ | ||
38 | + { | ||
39 | + "name": "Aaron Heckmann", | ||
40 | + "email": "aaron.heckmann+github@gmail.com" | ||
41 | + }, | ||
42 | + { | ||
43 | + "name": "Ciaran Jessup", | ||
44 | + "email": "ciaranj@gmail.com" | ||
45 | + }, | ||
46 | + { | ||
47 | + "name": "Douglas Christopher Wilson", | ||
48 | + "email": "doug@somethingdoug.com" | ||
49 | + }, | ||
50 | + { | ||
51 | + "name": "Guillermo Rauch", | ||
52 | + "email": "rauchg@gmail.com" | ||
53 | + }, | ||
54 | + { | ||
55 | + "name": "Jonathan Ong", | ||
56 | + "email": "me@jongleberry.com" | ||
57 | + }, | ||
58 | + { | ||
59 | + "name": "Roman Shtylman", | ||
60 | + "email": "shtylman+expressjs@gmail.com" | ||
61 | + }, | ||
62 | + { | ||
63 | + "name": "Young Jae Sim", | ||
64 | + "email": "hanul@hanul.me" | ||
65 | + } | ||
28 | ], | 66 | ], |
29 | "dependencies": { | 67 | "dependencies": { |
30 | "accepts": "~1.3.7", | 68 | "accepts": "~1.3.7", |
... | @@ -58,6 +96,7 @@ | ... | @@ -58,6 +96,7 @@ |
58 | "utils-merge": "1.0.1", | 96 | "utils-merge": "1.0.1", |
59 | "vary": "~1.1.2" | 97 | "vary": "~1.1.2" |
60 | }, | 98 | }, |
99 | + "description": "Fast, unopinionated, minimalist web framework", | ||
61 | "devDependencies": { | 100 | "devDependencies": { |
62 | "after": "0.8.2", | 101 | "after": "0.8.2", |
63 | "connect-redis": "3.4.1", | 102 | "connect-redis": "3.4.1", |
... | @@ -88,11 +127,30 @@ | ... | @@ -88,11 +127,30 @@ |
88 | "index.js", | 127 | "index.js", |
89 | "lib/" | 128 | "lib/" |
90 | ], | 129 | ], |
130 | + "homepage": "http://expressjs.com/", | ||
131 | + "keywords": [ | ||
132 | + "express", | ||
133 | + "framework", | ||
134 | + "sinatra", | ||
135 | + "web", | ||
136 | + "rest", | ||
137 | + "restful", | ||
138 | + "router", | ||
139 | + "app", | ||
140 | + "api" | ||
141 | + ], | ||
142 | + "license": "MIT", | ||
143 | + "name": "express", | ||
144 | + "repository": { | ||
145 | + "type": "git", | ||
146 | + "url": "git+https://github.com/expressjs/express.git" | ||
147 | + }, | ||
91 | "scripts": { | 148 | "scripts": { |
92 | "lint": "eslint .", | 149 | "lint": "eslint .", |
93 | "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/", | 150 | "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/", |
94 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/ test/acceptance/", | 151 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/ test/acceptance/", |
95 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/", | 152 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/", |
96 | "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/" | 153 | "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/" |
97 | - } | 154 | + }, |
155 | + "version": "4.17.1" | ||
98 | } | 156 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "finalhandler", | 2 | + "_args": [ |
3 | - "description": "Node.js final http responder", | 3 | + [ |
4 | - "version": "1.1.2", | 4 | + "finalhandler@1.1.2", |
5 | - "author": "Douglas Christopher Wilson <doug@somethingdoug.com>", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "license": "MIT", | 6 | + ] |
7 | - "repository": "pillarjs/finalhandler", | 7 | + ], |
8 | + "_from": "finalhandler@1.1.2", | ||
9 | + "_id": "finalhandler@1.1.2", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", | ||
12 | + "_location": "/finalhandler", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "finalhandler@1.1.2", | ||
18 | + "name": "finalhandler", | ||
19 | + "escapedName": "finalhandler", | ||
20 | + "rawSpec": "1.1.2", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.1.2" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", | ||
28 | + "_spec": "1.1.2", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "author": { | ||
31 | + "name": "Douglas Christopher Wilson", | ||
32 | + "email": "doug@somethingdoug.com" | ||
33 | + }, | ||
34 | + "bugs": { | ||
35 | + "url": "https://github.com/pillarjs/finalhandler/issues" | ||
36 | + }, | ||
8 | "dependencies": { | 37 | "dependencies": { |
9 | "debug": "2.6.9", | 38 | "debug": "2.6.9", |
10 | "encodeurl": "~1.0.2", | 39 | "encodeurl": "~1.0.2", |
... | @@ -14,6 +43,7 @@ | ... | @@ -14,6 +43,7 @@ |
14 | "statuses": "~1.5.0", | 43 | "statuses": "~1.5.0", |
15 | "unpipe": "~1.0.0" | 44 | "unpipe": "~1.0.0" |
16 | }, | 45 | }, |
46 | + "description": "Node.js final http responder", | ||
17 | "devDependencies": { | 47 | "devDependencies": { |
18 | "eslint": "5.16.0", | 48 | "eslint": "5.16.0", |
19 | "eslint-config-standard": "12.0.0", | 49 | "eslint-config-standard": "12.0.0", |
... | @@ -28,18 +58,26 @@ | ... | @@ -28,18 +58,26 @@ |
28 | "safe-buffer": "5.1.2", | 58 | "safe-buffer": "5.1.2", |
29 | "supertest": "4.0.2" | 59 | "supertest": "4.0.2" |
30 | }, | 60 | }, |
61 | + "engines": { | ||
62 | + "node": ">= 0.8" | ||
63 | + }, | ||
31 | "files": [ | 64 | "files": [ |
32 | "LICENSE", | 65 | "LICENSE", |
33 | "HISTORY.md", | 66 | "HISTORY.md", |
34 | "index.js" | 67 | "index.js" |
35 | ], | 68 | ], |
36 | - "engines": { | 69 | + "homepage": "https://github.com/pillarjs/finalhandler#readme", |
37 | - "node": ">= 0.8" | 70 | + "license": "MIT", |
71 | + "name": "finalhandler", | ||
72 | + "repository": { | ||
73 | + "type": "git", | ||
74 | + "url": "git+https://github.com/pillarjs/finalhandler.git" | ||
38 | }, | 75 | }, |
39 | "scripts": { | 76 | "scripts": { |
40 | "lint": "eslint --plugin markdown --ext js,md .", | 77 | "lint": "eslint --plugin markdown --ext js,md .", |
41 | "test": "mocha --reporter spec --bail --check-leaks test/", | 78 | "test": "mocha --reporter spec --bail --check-leaks test/", |
42 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", | 79 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", |
43 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/" | 80 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/" |
44 | - } | 81 | + }, |
82 | + "version": "1.1.2" | ||
45 | } | 83 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "forwarded", | 2 | + "_args": [ |
3 | - "description": "Parse HTTP X-Forwarded-For header", | 3 | + [ |
4 | - "version": "0.1.2", | 4 | + "forwarded@0.1.2", |
5 | - "contributors": [ | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "Douglas Christopher Wilson <doug@somethingdoug.com>" | 6 | + ] |
7 | ], | 7 | ], |
8 | - "license": "MIT", | 8 | + "_from": "forwarded@0.1.2", |
9 | - "keywords": [ | 9 | + "_id": "forwarded@0.1.2", |
10 | - "x-forwarded-for", | 10 | + "_inBundle": false, |
11 | - "http", | 11 | + "_integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", |
12 | - "req" | 12 | + "_location": "/forwarded", |
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "forwarded@0.1.2", | ||
18 | + "name": "forwarded", | ||
19 | + "escapedName": "forwarded", | ||
20 | + "rawSpec": "0.1.2", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "0.1.2" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/proxy-addr" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", | ||
28 | + "_spec": "0.1.2", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "bugs": { | ||
31 | + "url": "https://github.com/jshttp/forwarded/issues" | ||
32 | + }, | ||
33 | + "contributors": [ | ||
34 | + { | ||
35 | + "name": "Douglas Christopher Wilson", | ||
36 | + "email": "doug@somethingdoug.com" | ||
37 | + } | ||
13 | ], | 38 | ], |
14 | - "repository": "jshttp/forwarded", | 39 | + "description": "Parse HTTP X-Forwarded-For header", |
15 | "devDependencies": { | 40 | "devDependencies": { |
16 | "beautify-benchmark": "0.2.4", | 41 | "beautify-benchmark": "0.2.4", |
17 | "benchmark": "2.1.4", | 42 | "benchmark": "2.1.4", |
... | @@ -24,14 +49,26 @@ | ... | @@ -24,14 +49,26 @@ |
24 | "istanbul": "0.4.5", | 49 | "istanbul": "0.4.5", |
25 | "mocha": "1.21.5" | 50 | "mocha": "1.21.5" |
26 | }, | 51 | }, |
52 | + "engines": { | ||
53 | + "node": ">= 0.6" | ||
54 | + }, | ||
27 | "files": [ | 55 | "files": [ |
28 | "LICENSE", | 56 | "LICENSE", |
29 | "HISTORY.md", | 57 | "HISTORY.md", |
30 | "README.md", | 58 | "README.md", |
31 | "index.js" | 59 | "index.js" |
32 | ], | 60 | ], |
33 | - "engines": { | 61 | + "homepage": "https://github.com/jshttp/forwarded#readme", |
34 | - "node": ">= 0.6" | 62 | + "keywords": [ |
63 | + "x-forwarded-for", | ||
64 | + "http", | ||
65 | + "req" | ||
66 | + ], | ||
67 | + "license": "MIT", | ||
68 | + "name": "forwarded", | ||
69 | + "repository": { | ||
70 | + "type": "git", | ||
71 | + "url": "git+https://github.com/jshttp/forwarded.git" | ||
35 | }, | 72 | }, |
36 | "scripts": { | 73 | "scripts": { |
37 | "bench": "node benchmark/index.js", | 74 | "bench": "node benchmark/index.js", |
... | @@ -39,5 +76,6 @@ | ... | @@ -39,5 +76,6 @@ |
39 | "test": "mocha --reporter spec --bail --check-leaks test/", | 76 | "test": "mocha --reporter spec --bail --check-leaks test/", |
40 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", | 77 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", |
41 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" | 78 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" |
42 | - } | 79 | + }, |
80 | + "version": "0.1.2" | ||
43 | } | 81 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "fresh", | 2 | + "_args": [ |
3 | - "description": "HTTP response freshness testing", | 3 | + [ |
4 | - "version": "0.5.2", | 4 | + "fresh@0.5.2", |
5 | - "author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "contributors": [ | 6 | + ] |
7 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | ||
8 | - "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)" | ||
9 | ], | 7 | ], |
10 | - "license": "MIT", | 8 | + "_from": "fresh@0.5.2", |
11 | - "keywords": [ | 9 | + "_id": "fresh@0.5.2", |
12 | - "fresh", | 10 | + "_inBundle": false, |
13 | - "http", | 11 | + "_integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", |
14 | - "conditional", | 12 | + "_location": "/fresh", |
15 | - "cache" | 13 | + "_phantomChildren": {}, |
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "fresh@0.5.2", | ||
18 | + "name": "fresh", | ||
19 | + "escapedName": "fresh", | ||
20 | + "rawSpec": "0.5.2", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "0.5.2" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express", | ||
26 | + "/send" | ||
16 | ], | 27 | ], |
17 | - "repository": "jshttp/fresh", | 28 | + "_resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", |
29 | + "_spec": "0.5.2", | ||
30 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
31 | + "author": { | ||
32 | + "name": "TJ Holowaychuk", | ||
33 | + "email": "tj@vision-media.ca", | ||
34 | + "url": "http://tjholowaychuk.com" | ||
35 | + }, | ||
36 | + "bugs": { | ||
37 | + "url": "https://github.com/jshttp/fresh/issues" | ||
38 | + }, | ||
39 | + "contributors": [ | ||
40 | + { | ||
41 | + "name": "Douglas Christopher Wilson", | ||
42 | + "email": "doug@somethingdoug.com" | ||
43 | + }, | ||
44 | + { | ||
45 | + "name": "Jonathan Ong", | ||
46 | + "email": "me@jongleberry.com", | ||
47 | + "url": "http://jongleberry.com" | ||
48 | + } | ||
49 | + ], | ||
50 | + "description": "HTTP response freshness testing", | ||
18 | "devDependencies": { | 51 | "devDependencies": { |
19 | "beautify-benchmark": "0.2.4", | 52 | "beautify-benchmark": "0.2.4", |
20 | "benchmark": "2.1.4", | 53 | "benchmark": "2.1.4", |
... | @@ -28,13 +61,26 @@ | ... | @@ -28,13 +61,26 @@ |
28 | "istanbul": "0.4.5", | 61 | "istanbul": "0.4.5", |
29 | "mocha": "1.21.5" | 62 | "mocha": "1.21.5" |
30 | }, | 63 | }, |
64 | + "engines": { | ||
65 | + "node": ">= 0.6" | ||
66 | + }, | ||
31 | "files": [ | 67 | "files": [ |
32 | "HISTORY.md", | 68 | "HISTORY.md", |
33 | "LICENSE", | 69 | "LICENSE", |
34 | "index.js" | 70 | "index.js" |
35 | ], | 71 | ], |
36 | - "engines": { | 72 | + "homepage": "https://github.com/jshttp/fresh#readme", |
37 | - "node": ">= 0.6" | 73 | + "keywords": [ |
74 | + "fresh", | ||
75 | + "http", | ||
76 | + "conditional", | ||
77 | + "cache" | ||
78 | + ], | ||
79 | + "license": "MIT", | ||
80 | + "name": "fresh", | ||
81 | + "repository": { | ||
82 | + "type": "git", | ||
83 | + "url": "git+https://github.com/jshttp/fresh.git" | ||
38 | }, | 84 | }, |
39 | "scripts": { | 85 | "scripts": { |
40 | "bench": "node benchmark/index.js", | 86 | "bench": "node benchmark/index.js", |
... | @@ -42,5 +88,6 @@ | ... | @@ -42,5 +88,6 @@ |
42 | "test": "mocha --reporter spec --bail --check-leaks test/", | 88 | "test": "mocha --reporter spec --bail --check-leaks test/", |
43 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", | 89 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", |
44 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" | 90 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" |
45 | - } | 91 | + }, |
92 | + "version": "0.5.2" | ||
46 | } | 93 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "http-errors", | 2 | + "_args": [ |
3 | - "description": "Create HTTP error objects", | 3 | + [ |
4 | - "version": "1.7.2", | 4 | + "http-errors@1.7.2", |
5 | - "author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | + ] | ||
7 | + ], | ||
8 | + "_from": "http-errors@1.7.2", | ||
9 | + "_id": "http-errors@1.7.2", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", | ||
12 | + "_location": "/http-errors", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "http-errors@1.7.2", | ||
18 | + "name": "http-errors", | ||
19 | + "escapedName": "http-errors", | ||
20 | + "rawSpec": "1.7.2", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.7.2" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/body-parser", | ||
26 | + "/raw-body", | ||
27 | + "/send" | ||
28 | + ], | ||
29 | + "_resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", | ||
30 | + "_spec": "1.7.2", | ||
31 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
32 | + "author": { | ||
33 | + "name": "Jonathan Ong", | ||
34 | + "email": "me@jongleberry.com", | ||
35 | + "url": "http://jongleberry.com" | ||
36 | + }, | ||
37 | + "bugs": { | ||
38 | + "url": "https://github.com/jshttp/http-errors/issues" | ||
39 | + }, | ||
6 | "contributors": [ | 40 | "contributors": [ |
7 | - "Alan Plum <me@pluma.io>", | 41 | + { |
8 | - "Douglas Christopher Wilson <doug@somethingdoug.com>" | 42 | + "name": "Alan Plum", |
43 | + "email": "me@pluma.io" | ||
44 | + }, | ||
45 | + { | ||
46 | + "name": "Douglas Christopher Wilson", | ||
47 | + "email": "doug@somethingdoug.com" | ||
48 | + } | ||
9 | ], | 49 | ], |
10 | - "license": "MIT", | ||
11 | - "repository": "jshttp/http-errors", | ||
12 | "dependencies": { | 50 | "dependencies": { |
13 | "depd": "~1.1.2", | 51 | "depd": "~1.1.2", |
14 | "inherits": "2.0.3", | 52 | "inherits": "2.0.3", |
... | @@ -16,6 +54,7 @@ | ... | @@ -16,6 +54,7 @@ |
16 | "statuses": ">= 1.5.0 < 2", | 54 | "statuses": ">= 1.5.0 < 2", |
17 | "toidentifier": "1.0.0" | 55 | "toidentifier": "1.0.0" |
18 | }, | 56 | }, |
57 | + "description": "Create HTTP error objects", | ||
19 | "devDependencies": { | 58 | "devDependencies": { |
20 | "eslint": "5.13.0", | 59 | "eslint": "5.13.0", |
21 | "eslint-config-standard": "12.0.0", | 60 | "eslint-config-standard": "12.0.0", |
... | @@ -30,20 +69,28 @@ | ... | @@ -30,20 +69,28 @@ |
30 | "engines": { | 69 | "engines": { |
31 | "node": ">= 0.6" | 70 | "node": ">= 0.6" |
32 | }, | 71 | }, |
72 | + "files": [ | ||
73 | + "index.js", | ||
74 | + "HISTORY.md", | ||
75 | + "LICENSE", | ||
76 | + "README.md" | ||
77 | + ], | ||
78 | + "homepage": "https://github.com/jshttp/http-errors#readme", | ||
79 | + "keywords": [ | ||
80 | + "http", | ||
81 | + "error" | ||
82 | + ], | ||
83 | + "license": "MIT", | ||
84 | + "name": "http-errors", | ||
85 | + "repository": { | ||
86 | + "type": "git", | ||
87 | + "url": "git+https://github.com/jshttp/http-errors.git" | ||
88 | + }, | ||
33 | "scripts": { | 89 | "scripts": { |
34 | "lint": "eslint --plugin markdown --ext js,md . && node ./scripts/lint-readme-list.js", | 90 | "lint": "eslint --plugin markdown --ext js,md . && node ./scripts/lint-readme-list.js", |
35 | "test": "mocha --reporter spec --bail", | 91 | "test": "mocha --reporter spec --bail", |
36 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot", | 92 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot", |
37 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot" | 93 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot" |
38 | }, | 94 | }, |
39 | - "keywords": [ | 95 | + "version": "1.7.2" |
40 | - "http", | ||
41 | - "error" | ||
42 | - ], | ||
43 | - "files": [ | ||
44 | - "index.js", | ||
45 | - "HISTORY.md", | ||
46 | - "LICENSE", | ||
47 | - "README.md" | ||
48 | - ] | ||
49 | } | 96 | } | ... | ... |
1 | { | 1 | { |
2 | + "_from": "iconv-lite@0.4.24", | ||
3 | + "_id": "iconv-lite@0.4.24", | ||
4 | + "_inBundle": false, | ||
5 | + "_integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", | ||
6 | + "_location": "/iconv-lite", | ||
7 | + "_phantomChildren": {}, | ||
8 | + "_requested": { | ||
9 | + "type": "version", | ||
10 | + "registry": true, | ||
11 | + "raw": "iconv-lite@0.4.24", | ||
2 | "name": "iconv-lite", | 12 | "name": "iconv-lite", |
3 | - "description": "Convert character encodings in pure javascript.", | 13 | + "escapedName": "iconv-lite", |
4 | - "version": "0.4.24", | 14 | + "rawSpec": "0.4.24", |
5 | - "license": "MIT", | 15 | + "saveSpec": null, |
6 | - "keywords": [ | 16 | + "fetchSpec": "0.4.24" |
7 | - "iconv", | 17 | + }, |
8 | - "convert", | 18 | + "_requiredBy": [ |
9 | - "charset", | 19 | + "/body-parser", |
10 | - "icu" | 20 | + "/raw-body" |
11 | - ], | 21 | + ], |
12 | - "author": "Alexander Shtuchkin <ashtuchkin@gmail.com>", | 22 | + "_resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", |
13 | - "main": "./lib/index.js", | 23 | + "_shasum": "2022b4b25fbddc21d2f524974a474aafe733908b", |
14 | - "typings": "./lib/index.d.ts", | 24 | + "_spec": "iconv-lite@0.4.24", |
15 | - "homepage": "https://github.com/ashtuchkin/iconv-lite", | 25 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory\\node_modules\\body-parser", |
16 | - "bugs": "https://github.com/ashtuchkin/iconv-lite/issues", | 26 | + "author": { |
17 | - "repository": { | 27 | + "name": "Alexander Shtuchkin", |
18 | - "type": "git", | 28 | + "email": "ashtuchkin@gmail.com" |
19 | - "url": "git://github.com/ashtuchkin/iconv-lite.git" | 29 | + }, |
20 | - }, | 30 | + "browser": { |
21 | - "engines": { | 31 | + "./lib/extend-node": false, |
22 | - "node": ">=0.10.0" | 32 | + "./lib/streams": false |
23 | - }, | 33 | + }, |
24 | - "scripts": { | 34 | + "bugs": { |
25 | - "coverage": "istanbul cover _mocha -- --grep .", | 35 | + "url": "https://github.com/ashtuchkin/iconv-lite/issues" |
26 | - "coverage-open": "open coverage/lcov-report/index.html", | 36 | + }, |
27 | - "test": "mocha --reporter spec --grep ." | 37 | + "bundleDependencies": false, |
28 | - }, | 38 | + "dependencies": { |
29 | - "browser": { | 39 | + "safer-buffer": ">= 2.1.2 < 3" |
30 | - "./lib/extend-node": false, | 40 | + }, |
31 | - "./lib/streams": false | 41 | + "deprecated": false, |
32 | - }, | 42 | + "description": "Convert character encodings in pure javascript.", |
33 | - "devDependencies": { | 43 | + "devDependencies": { |
34 | - "mocha": "^3.1.0", | 44 | + "async": "*", |
35 | - "request": "~2.87.0", | 45 | + "errto": "*", |
36 | - "unorm": "*", | 46 | + "iconv": "*", |
37 | - "errto": "*", | 47 | + "istanbul": "*", |
38 | - "async": "*", | 48 | + "mocha": "^3.1.0", |
39 | - "istanbul": "*", | 49 | + "request": "~2.87.0", |
40 | - "semver": "*", | 50 | + "semver": "*", |
41 | - "iconv": "*" | 51 | + "unorm": "*" |
42 | - }, | 52 | + }, |
43 | - "dependencies": { | 53 | + "engines": { |
44 | - "safer-buffer": ">= 2.1.2 < 3" | 54 | + "node": ">=0.10.0" |
45 | - } | 55 | + }, |
56 | + "homepage": "https://github.com/ashtuchkin/iconv-lite", | ||
57 | + "keywords": [ | ||
58 | + "iconv", | ||
59 | + "convert", | ||
60 | + "charset", | ||
61 | + "icu" | ||
62 | + ], | ||
63 | + "license": "MIT", | ||
64 | + "main": "./lib/index.js", | ||
65 | + "name": "iconv-lite", | ||
66 | + "repository": { | ||
67 | + "type": "git", | ||
68 | + "url": "git://github.com/ashtuchkin/iconv-lite.git" | ||
69 | + }, | ||
70 | + "scripts": { | ||
71 | + "coverage": "istanbul cover _mocha -- --grep .", | ||
72 | + "coverage-open": "open coverage/lcov-report/index.html", | ||
73 | + "test": "mocha --reporter spec --grep ." | ||
74 | + }, | ||
75 | + "typings": "./lib/index.d.ts", | ||
76 | + "version": "0.4.24" | ||
46 | } | 77 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "inherits", | 2 | + "_args": [ |
3 | + [ | ||
4 | + "inherits@2.0.3", | ||
5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" | ||
6 | + ] | ||
7 | + ], | ||
8 | + "_from": "inherits@2.0.3", | ||
9 | + "_id": "inherits@2.0.3", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", | ||
12 | + "_location": "/inherits", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "inherits@2.0.3", | ||
18 | + "name": "inherits", | ||
19 | + "escapedName": "inherits", | ||
20 | + "rawSpec": "2.0.3", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "2.0.3" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/http-errors", | ||
26 | + "/readable-stream" | ||
27 | + ], | ||
28 | + "_resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", | ||
29 | + "_spec": "2.0.3", | ||
30 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
31 | + "browser": "./inherits_browser.js", | ||
32 | + "bugs": { | ||
33 | + "url": "https://github.com/isaacs/inherits/issues" | ||
34 | + }, | ||
3 | "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", | 35 | "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", |
4 | - "version": "2.0.3", | 36 | + "devDependencies": { |
37 | + "tap": "^7.1.0" | ||
38 | + }, | ||
39 | + "files": [ | ||
40 | + "inherits.js", | ||
41 | + "inherits_browser.js" | ||
42 | + ], | ||
43 | + "homepage": "https://github.com/isaacs/inherits#readme", | ||
5 | "keywords": [ | 44 | "keywords": [ |
6 | "inheritance", | 45 | "inheritance", |
7 | "class", | 46 | "class", |
... | @@ -12,18 +51,15 @@ | ... | @@ -12,18 +51,15 @@ |
12 | "browser", | 51 | "browser", |
13 | "browserify" | 52 | "browserify" |
14 | ], | 53 | ], |
15 | - "main": "./inherits.js", | ||
16 | - "browser": "./inherits_browser.js", | ||
17 | - "repository": "git://github.com/isaacs/inherits", | ||
18 | "license": "ISC", | 54 | "license": "ISC", |
55 | + "main": "./inherits.js", | ||
56 | + "name": "inherits", | ||
57 | + "repository": { | ||
58 | + "type": "git", | ||
59 | + "url": "git://github.com/isaacs/inherits.git" | ||
60 | + }, | ||
19 | "scripts": { | 61 | "scripts": { |
20 | "test": "node test" | 62 | "test": "node test" |
21 | }, | 63 | }, |
22 | - "devDependencies": { | 64 | + "version": "2.0.3" |
23 | - "tap": "^7.1.0" | ||
24 | - }, | ||
25 | - "files": [ | ||
26 | - "inherits.js", | ||
27 | - "inherits_browser.js" | ||
28 | - ] | ||
29 | } | 65 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "ipaddr.js", | 2 | + "_args": [ |
3 | - "description": "A library for manipulating IPv4 and IPv6 addresses in JavaScript.", | 3 | + [ |
4 | - "version": "1.9.1", | 4 | + "ipaddr.js@1.9.1", |
5 | - "author": "whitequark <whitequark@whitequark.org>", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "directories": { | 6 | + ] |
7 | - "lib": "./lib" | 7 | + ], |
8 | + "_from": "ipaddr.js@1.9.1", | ||
9 | + "_id": "ipaddr.js@1.9.1", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", | ||
12 | + "_location": "/ipaddr.js", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "ipaddr.js@1.9.1", | ||
18 | + "name": "ipaddr.js", | ||
19 | + "escapedName": "ipaddr.js", | ||
20 | + "rawSpec": "1.9.1", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.9.1" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/proxy-addr" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", | ||
28 | + "_spec": "1.9.1", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "author": { | ||
31 | + "name": "whitequark", | ||
32 | + "email": "whitequark@whitequark.org" | ||
33 | + }, | ||
34 | + "bugs": { | ||
35 | + "url": "https://github.com/whitequark/ipaddr.js/issues" | ||
8 | }, | 36 | }, |
9 | "dependencies": {}, | 37 | "dependencies": {}, |
38 | + "description": "A library for manipulating IPv4 and IPv6 addresses in JavaScript.", | ||
10 | "devDependencies": { | 39 | "devDependencies": { |
11 | "coffee-script": "~1.12.6", | 40 | "coffee-script": "~1.12.6", |
12 | "nodeunit": "^0.11.3", | 41 | "nodeunit": "^0.11.3", |
13 | "uglify-js": "~3.0.19" | 42 | "uglify-js": "~3.0.19" |
14 | }, | 43 | }, |
15 | - "scripts": { | 44 | + "directories": { |
16 | - "test": "cake build test" | 45 | + "lib": "./lib" |
46 | + }, | ||
47 | + "engines": { | ||
48 | + "node": ">= 0.10" | ||
17 | }, | 49 | }, |
18 | "files": [ | 50 | "files": [ |
19 | "lib/", | 51 | "lib/", |
20 | "LICENSE", | 52 | "LICENSE", |
21 | "ipaddr.min.js" | 53 | "ipaddr.min.js" |
22 | ], | 54 | ], |
55 | + "homepage": "https://github.com/whitequark/ipaddr.js#readme", | ||
23 | "keywords": [ | 56 | "keywords": [ |
24 | "ip", | 57 | "ip", |
25 | "ipv4", | 58 | "ipv4", |
26 | "ipv6" | 59 | "ipv6" |
27 | ], | 60 | ], |
28 | - "repository": "git://github.com/whitequark/ipaddr.js", | 61 | + "license": "MIT", |
29 | "main": "./lib/ipaddr.js", | 62 | "main": "./lib/ipaddr.js", |
30 | - "engines": { | 63 | + "name": "ipaddr.js", |
31 | - "node": ">= 0.10" | 64 | + "repository": { |
65 | + "type": "git", | ||
66 | + "url": "git://github.com/whitequark/ipaddr.js.git" | ||
32 | }, | 67 | }, |
33 | - "license": "MIT", | 68 | + "scripts": { |
34 | - "types": "./lib/ipaddr.js.d.ts" | 69 | + "test": "cake build test" |
70 | + }, | ||
71 | + "types": "./lib/ipaddr.js.d.ts", | ||
72 | + "version": "1.9.1" | ||
35 | } | 73 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "isarray", | 2 | + "_args": [ |
3 | - "description": "Array#isArray for older browsers", | 3 | + [ |
4 | - "version": "1.0.0", | 4 | + "isarray@1.0.0", |
5 | - "repository": { | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "type": "git", | 6 | + ] |
7 | - "url": "git://github.com/juliangruber/isarray.git" | 7 | + ], |
8 | + "_from": "isarray@1.0.0", | ||
9 | + "_id": "isarray@1.0.0", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", | ||
12 | + "_location": "/isarray", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "isarray@1.0.0", | ||
18 | + "name": "isarray", | ||
19 | + "escapedName": "isarray", | ||
20 | + "rawSpec": "1.0.0", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.0.0" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/readable-stream" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", | ||
28 | + "_spec": "1.0.0", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "author": { | ||
31 | + "name": "Julian Gruber", | ||
32 | + "email": "mail@juliangruber.com", | ||
33 | + "url": "http://juliangruber.com" | ||
34 | + }, | ||
35 | + "bugs": { | ||
36 | + "url": "https://github.com/juliangruber/isarray/issues" | ||
8 | }, | 37 | }, |
9 | - "homepage": "https://github.com/juliangruber/isarray", | ||
10 | - "main": "index.js", | ||
11 | "dependencies": {}, | 38 | "dependencies": {}, |
39 | + "description": "Array#isArray for older browsers", | ||
12 | "devDependencies": { | 40 | "devDependencies": { |
13 | "tape": "~2.13.4" | 41 | "tape": "~2.13.4" |
14 | }, | 42 | }, |
43 | + "homepage": "https://github.com/juliangruber/isarray", | ||
15 | "keywords": [ | 44 | "keywords": [ |
16 | "browser", | 45 | "browser", |
17 | "isarray", | 46 | "isarray", |
18 | "array" | 47 | "array" |
19 | ], | 48 | ], |
20 | - "author": { | ||
21 | - "name": "Julian Gruber", | ||
22 | - "email": "mail@juliangruber.com", | ||
23 | - "url": "http://juliangruber.com" | ||
24 | - }, | ||
25 | "license": "MIT", | 49 | "license": "MIT", |
50 | + "main": "index.js", | ||
51 | + "name": "isarray", | ||
52 | + "repository": { | ||
53 | + "type": "git", | ||
54 | + "url": "git://github.com/juliangruber/isarray.git" | ||
55 | + }, | ||
56 | + "scripts": { | ||
57 | + "test": "tape test.js" | ||
58 | + }, | ||
26 | "testling": { | 59 | "testling": { |
27 | "files": "test.js", | 60 | "files": "test.js", |
28 | "browsers": [ | 61 | "browsers": [ |
... | @@ -39,7 +72,5 @@ | ... | @@ -39,7 +72,5 @@ |
39 | "android-browser/4.2..latest" | 72 | "android-browser/4.2..latest" |
40 | ] | 73 | ] |
41 | }, | 74 | }, |
42 | - "scripts": { | 75 | + "version": "1.0.0" |
43 | - "test": "tape test.js" | ||
44 | - } | ||
45 | } | 76 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "media-typer", | 2 | + "_args": [ |
3 | + [ | ||
4 | + "media-typer@0.3.0", | ||
5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" | ||
6 | + ] | ||
7 | + ], | ||
8 | + "_from": "media-typer@0.3.0", | ||
9 | + "_id": "media-typer@0.3.0", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", | ||
12 | + "_location": "/media-typer", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "media-typer@0.3.0", | ||
18 | + "name": "media-typer", | ||
19 | + "escapedName": "media-typer", | ||
20 | + "rawSpec": "0.3.0", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "0.3.0" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/type-is" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", | ||
28 | + "_spec": "0.3.0", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "author": { | ||
31 | + "name": "Douglas Christopher Wilson", | ||
32 | + "email": "doug@somethingdoug.com" | ||
33 | + }, | ||
34 | + "bugs": { | ||
35 | + "url": "https://github.com/jshttp/media-typer/issues" | ||
36 | + }, | ||
3 | "description": "Simple RFC 6838 media type parser and formatter", | 37 | "description": "Simple RFC 6838 media type parser and formatter", |
4 | - "version": "0.3.0", | ||
5 | - "author": "Douglas Christopher Wilson <doug@somethingdoug.com>", | ||
6 | - "license": "MIT", | ||
7 | - "repository": "jshttp/media-typer", | ||
8 | "devDependencies": { | 38 | "devDependencies": { |
9 | "istanbul": "0.3.2", | 39 | "istanbul": "0.3.2", |
10 | "mocha": "~1.21.4", | 40 | "mocha": "~1.21.4", |
11 | "should": "~4.0.4" | 41 | "should": "~4.0.4" |
12 | }, | 42 | }, |
43 | + "engines": { | ||
44 | + "node": ">= 0.6" | ||
45 | + }, | ||
13 | "files": [ | 46 | "files": [ |
14 | "LICENSE", | 47 | "LICENSE", |
15 | "HISTORY.md", | 48 | "HISTORY.md", |
16 | "index.js" | 49 | "index.js" |
17 | ], | 50 | ], |
18 | - "engines": { | 51 | + "homepage": "https://github.com/jshttp/media-typer#readme", |
19 | - "node": ">= 0.6" | 52 | + "license": "MIT", |
53 | + "name": "media-typer", | ||
54 | + "repository": { | ||
55 | + "type": "git", | ||
56 | + "url": "git+https://github.com/jshttp/media-typer.git" | ||
20 | }, | 57 | }, |
21 | "scripts": { | 58 | "scripts": { |
22 | "test": "mocha --reporter spec --check-leaks --bail test/", | 59 | "test": "mocha --reporter spec --check-leaks --bail test/", |
23 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", | 60 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", |
24 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" | 61 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" |
25 | - } | 62 | + }, |
63 | + "version": "0.3.0" | ||
26 | } | 64 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "merge-descriptors", | 2 | + "_args": [ |
3 | - "description": "Merge objects using descriptors", | 3 | + [ |
4 | - "version": "1.0.1", | 4 | + "merge-descriptors@1.0.1", |
5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" | ||
6 | + ] | ||
7 | + ], | ||
8 | + "_from": "merge-descriptors@1.0.1", | ||
9 | + "_id": "merge-descriptors@1.0.1", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", | ||
12 | + "_location": "/merge-descriptors", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "merge-descriptors@1.0.1", | ||
18 | + "name": "merge-descriptors", | ||
19 | + "escapedName": "merge-descriptors", | ||
20 | + "rawSpec": "1.0.1", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.0.1" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", | ||
28 | + "_spec": "1.0.1", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
5 | "author": { | 30 | "author": { |
6 | "name": "Jonathan Ong", | 31 | "name": "Jonathan Ong", |
7 | "email": "me@jongleberry.com", | 32 | "email": "me@jongleberry.com", |
8 | - "url": "http://jongleberry.com", | 33 | + "url": "http://jongleberry.com" |
9 | - "twitter": "https://twitter.com/jongleberry" | 34 | + }, |
35 | + "bugs": { | ||
36 | + "url": "https://github.com/component/merge-descriptors/issues" | ||
10 | }, | 37 | }, |
11 | "contributors": [ | 38 | "contributors": [ |
12 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | 39 | + { |
13 | - "Mike Grabowski <grabbou@gmail.com>" | 40 | + "name": "Douglas Christopher Wilson", |
41 | + "email": "doug@somethingdoug.com" | ||
42 | + }, | ||
43 | + { | ||
44 | + "name": "Mike Grabowski", | ||
45 | + "email": "grabbou@gmail.com" | ||
46 | + } | ||
14 | ], | 47 | ], |
15 | - "license": "MIT", | 48 | + "description": "Merge objects using descriptors", |
16 | - "repository": "component/merge-descriptors", | ||
17 | "devDependencies": { | 49 | "devDependencies": { |
18 | "istanbul": "0.4.1", | 50 | "istanbul": "0.4.1", |
19 | "mocha": "1.21.5" | 51 | "mocha": "1.21.5" |
... | @@ -24,9 +56,17 @@ | ... | @@ -24,9 +56,17 @@ |
24 | "README.md", | 56 | "README.md", |
25 | "index.js" | 57 | "index.js" |
26 | ], | 58 | ], |
59 | + "homepage": "https://github.com/component/merge-descriptors#readme", | ||
60 | + "license": "MIT", | ||
61 | + "name": "merge-descriptors", | ||
62 | + "repository": { | ||
63 | + "type": "git", | ||
64 | + "url": "git+https://github.com/component/merge-descriptors.git" | ||
65 | + }, | ||
27 | "scripts": { | 66 | "scripts": { |
28 | "test": "mocha --reporter spec --bail --check-leaks test/", | 67 | "test": "mocha --reporter spec --bail --check-leaks test/", |
29 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", | 68 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", |
30 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/" | 69 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/" |
31 | - } | 70 | + }, |
71 | + "version": "1.0.1" | ||
32 | } | 72 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "methods", | 2 | + "_args": [ |
3 | - "description": "HTTP methods that node supports", | 3 | + [ |
4 | - "version": "1.1.2", | 4 | + "methods@1.1.2", |
5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" | ||
6 | + ] | ||
7 | + ], | ||
8 | + "_from": "methods@1.1.2", | ||
9 | + "_id": "methods@1.1.2", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", | ||
12 | + "_location": "/methods", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "methods@1.1.2", | ||
18 | + "name": "methods", | ||
19 | + "escapedName": "methods", | ||
20 | + "rawSpec": "1.1.2", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.1.2" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", | ||
28 | + "_spec": "1.1.2", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "browser": { | ||
31 | + "http": false | ||
32 | + }, | ||
33 | + "bugs": { | ||
34 | + "url": "https://github.com/jshttp/methods/issues" | ||
35 | + }, | ||
5 | "contributors": [ | 36 | "contributors": [ |
6 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | 37 | + { |
7 | - "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)", | 38 | + "name": "Douglas Christopher Wilson", |
8 | - "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)" | 39 | + "email": "doug@somethingdoug.com" |
40 | + }, | ||
41 | + { | ||
42 | + "name": "Jonathan Ong", | ||
43 | + "email": "me@jongleberry.com", | ||
44 | + "url": "http://jongleberry.com" | ||
45 | + }, | ||
46 | + { | ||
47 | + "name": "TJ Holowaychuk", | ||
48 | + "email": "tj@vision-media.ca", | ||
49 | + "url": "http://tjholowaychuk.com" | ||
50 | + } | ||
9 | ], | 51 | ], |
10 | - "license": "MIT", | 52 | + "description": "HTTP methods that node supports", |
11 | - "repository": "jshttp/methods", | ||
12 | "devDependencies": { | 53 | "devDependencies": { |
13 | "istanbul": "0.4.1", | 54 | "istanbul": "0.4.1", |
14 | "mocha": "1.21.5" | 55 | "mocha": "1.21.5" |
15 | }, | 56 | }, |
57 | + "engines": { | ||
58 | + "node": ">= 0.6" | ||
59 | + }, | ||
16 | "files": [ | 60 | "files": [ |
17 | "index.js", | 61 | "index.js", |
18 | "HISTORY.md", | 62 | "HISTORY.md", |
19 | "LICENSE" | 63 | "LICENSE" |
20 | ], | 64 | ], |
21 | - "engines": { | 65 | + "homepage": "https://github.com/jshttp/methods#readme", |
22 | - "node": ">= 0.6" | 66 | + "keywords": [ |
67 | + "http", | ||
68 | + "methods" | ||
69 | + ], | ||
70 | + "license": "MIT", | ||
71 | + "name": "methods", | ||
72 | + "repository": { | ||
73 | + "type": "git", | ||
74 | + "url": "git+https://github.com/jshttp/methods.git" | ||
23 | }, | 75 | }, |
24 | "scripts": { | 76 | "scripts": { |
25 | "test": "mocha --reporter spec --bail --check-leaks test/", | 77 | "test": "mocha --reporter spec --bail --check-leaks test/", |
26 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", | 78 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", |
27 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" | 79 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" |
28 | }, | 80 | }, |
29 | - "browser": { | 81 | + "version": "1.1.2" |
30 | - "http": false | ||
31 | - }, | ||
32 | - "keywords": [ | ||
33 | - "http", | ||
34 | - "methods" | ||
35 | - ] | ||
36 | } | 82 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "mime-db", | 2 | + "_args": [ |
3 | - "description": "Media Type Database", | 3 | + [ |
4 | - "version": "1.47.0", | 4 | + "mime-db@1.47.0", |
5 | - "contributors": [ | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | 6 | + ] |
7 | - "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)", | ||
8 | - "Robert Kieffer <robert@broofa.com> (http://github.com/broofa)" | ||
9 | ], | 7 | ], |
10 | - "license": "MIT", | 8 | + "_from": "mime-db@1.47.0", |
11 | - "keywords": [ | 9 | + "_id": "mime-db@1.47.0", |
12 | - "mime", | 10 | + "_inBundle": false, |
13 | - "db", | 11 | + "_integrity": "sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw==", |
14 | - "type", | 12 | + "_location": "/mime-db", |
15 | - "types", | 13 | + "_phantomChildren": {}, |
16 | - "database", | 14 | + "_requested": { |
17 | - "charset", | 15 | + "type": "version", |
18 | - "charsets" | 16 | + "registry": true, |
17 | + "raw": "mime-db@1.47.0", | ||
18 | + "name": "mime-db", | ||
19 | + "escapedName": "mime-db", | ||
20 | + "rawSpec": "1.47.0", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.47.0" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/mime-types" | ||
19 | ], | 26 | ], |
20 | - "repository": "jshttp/mime-db", | 27 | + "_resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.47.0.tgz", |
28 | + "_spec": "1.47.0", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "bugs": { | ||
31 | + "url": "https://github.com/jshttp/mime-db/issues" | ||
32 | + }, | ||
33 | + "contributors": [ | ||
34 | + { | ||
35 | + "name": "Douglas Christopher Wilson", | ||
36 | + "email": "doug@somethingdoug.com" | ||
37 | + }, | ||
38 | + { | ||
39 | + "name": "Jonathan Ong", | ||
40 | + "email": "me@jongleberry.com", | ||
41 | + "url": "http://jongleberry.com" | ||
42 | + }, | ||
43 | + { | ||
44 | + "name": "Robert Kieffer", | ||
45 | + "email": "robert@broofa.com", | ||
46 | + "url": "http://github.com/broofa" | ||
47 | + } | ||
48 | + ], | ||
49 | + "description": "Media Type Database", | ||
21 | "devDependencies": { | 50 | "devDependencies": { |
22 | "bluebird": "3.7.2", | 51 | "bluebird": "3.7.2", |
23 | "co": "4.6.0", | 52 | "co": "4.6.0", |
... | @@ -36,6 +65,9 @@ | ... | @@ -36,6 +65,9 @@ |
36 | "raw-body": "2.4.1", | 65 | "raw-body": "2.4.1", |
37 | "stream-to-array": "2.3.0" | 66 | "stream-to-array": "2.3.0" |
38 | }, | 67 | }, |
68 | + "engines": { | ||
69 | + "node": ">= 0.6" | ||
70 | + }, | ||
39 | "files": [ | 71 | "files": [ |
40 | "HISTORY.md", | 72 | "HISTORY.md", |
41 | "LICENSE", | 73 | "LICENSE", |
... | @@ -43,8 +75,21 @@ | ... | @@ -43,8 +75,21 @@ |
43 | "db.json", | 75 | "db.json", |
44 | "index.js" | 76 | "index.js" |
45 | ], | 77 | ], |
46 | - "engines": { | 78 | + "homepage": "https://github.com/jshttp/mime-db#readme", |
47 | - "node": ">= 0.6" | 79 | + "keywords": [ |
80 | + "mime", | ||
81 | + "db", | ||
82 | + "type", | ||
83 | + "types", | ||
84 | + "database", | ||
85 | + "charset", | ||
86 | + "charsets" | ||
87 | + ], | ||
88 | + "license": "MIT", | ||
89 | + "name": "mime-db", | ||
90 | + "repository": { | ||
91 | + "type": "git", | ||
92 | + "url": "git+https://github.com/jshttp/mime-db.git" | ||
48 | }, | 93 | }, |
49 | "scripts": { | 94 | "scripts": { |
50 | "build": "node scripts/build", | 95 | "build": "node scripts/build", |
... | @@ -55,5 +100,6 @@ | ... | @@ -55,5 +100,6 @@ |
55 | "test-cov": "nyc --reporter=html --reporter=text npm test", | 100 | "test-cov": "nyc --reporter=html --reporter=text npm test", |
56 | "update": "npm run fetch && npm run build", | 101 | "update": "npm run fetch && npm run build", |
57 | "version": "node scripts/version-history.js && git add HISTORY.md" | 102 | "version": "node scripts/version-history.js && git add HISTORY.md" |
58 | - } | 103 | + }, |
104 | + "version": "1.47.0" | ||
59 | } | 105 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "mime-types", | 2 | + "_args": [ |
3 | - "description": "The ultimate javascript content-type utility.", | 3 | + [ |
4 | - "version": "2.1.30", | 4 | + "mime-types@2.1.30", |
5 | - "contributors": [ | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | 6 | + ] |
7 | - "Jeremiah Senkpiel <fishrock123@rocketmail.com> (https://searchbeam.jit.su)", | ||
8 | - "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)" | ||
9 | ], | 7 | ], |
10 | - "license": "MIT", | 8 | + "_from": "mime-types@2.1.30", |
11 | - "keywords": [ | 9 | + "_id": "mime-types@2.1.30", |
12 | - "mime", | 10 | + "_inBundle": false, |
13 | - "types" | 11 | + "_integrity": "sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg==", |
12 | + "_location": "/mime-types", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "mime-types@2.1.30", | ||
18 | + "name": "mime-types", | ||
19 | + "escapedName": "mime-types", | ||
20 | + "rawSpec": "2.1.30", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "2.1.30" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/accepts", | ||
26 | + "/type-is" | ||
27 | + ], | ||
28 | + "_resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.30.tgz", | ||
29 | + "_spec": "2.1.30", | ||
30 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
31 | + "bugs": { | ||
32 | + "url": "https://github.com/jshttp/mime-types/issues" | ||
33 | + }, | ||
34 | + "contributors": [ | ||
35 | + { | ||
36 | + "name": "Douglas Christopher Wilson", | ||
37 | + "email": "doug@somethingdoug.com" | ||
38 | + }, | ||
39 | + { | ||
40 | + "name": "Jeremiah Senkpiel", | ||
41 | + "email": "fishrock123@rocketmail.com", | ||
42 | + "url": "https://searchbeam.jit.su" | ||
43 | + }, | ||
44 | + { | ||
45 | + "name": "Jonathan Ong", | ||
46 | + "email": "me@jongleberry.com", | ||
47 | + "url": "http://jongleberry.com" | ||
48 | + } | ||
14 | ], | 49 | ], |
15 | - "repository": "jshttp/mime-types", | ||
16 | "dependencies": { | 50 | "dependencies": { |
17 | "mime-db": "1.47.0" | 51 | "mime-db": "1.47.0" |
18 | }, | 52 | }, |
53 | + "description": "The ultimate javascript content-type utility.", | ||
19 | "devDependencies": { | 54 | "devDependencies": { |
20 | "eslint": "7.23.0", | 55 | "eslint": "7.23.0", |
21 | "eslint-config-standard": "14.1.1", | 56 | "eslint-config-standard": "14.1.1", |
... | @@ -27,18 +62,30 @@ | ... | @@ -27,18 +62,30 @@ |
27 | "mocha": "8.3.2", | 62 | "mocha": "8.3.2", |
28 | "nyc": "15.1.0" | 63 | "nyc": "15.1.0" |
29 | }, | 64 | }, |
65 | + "engines": { | ||
66 | + "node": ">= 0.6" | ||
67 | + }, | ||
30 | "files": [ | 68 | "files": [ |
31 | "HISTORY.md", | 69 | "HISTORY.md", |
32 | "LICENSE", | 70 | "LICENSE", |
33 | "index.js" | 71 | "index.js" |
34 | ], | 72 | ], |
35 | - "engines": { | 73 | + "homepage": "https://github.com/jshttp/mime-types#readme", |
36 | - "node": ">= 0.6" | 74 | + "keywords": [ |
75 | + "mime", | ||
76 | + "types" | ||
77 | + ], | ||
78 | + "license": "MIT", | ||
79 | + "name": "mime-types", | ||
80 | + "repository": { | ||
81 | + "type": "git", | ||
82 | + "url": "git+https://github.com/jshttp/mime-types.git" | ||
37 | }, | 83 | }, |
38 | "scripts": { | 84 | "scripts": { |
39 | "lint": "eslint .", | 85 | "lint": "eslint .", |
40 | "test": "mocha --reporter spec test/test.js", | 86 | "test": "mocha --reporter spec test/test.js", |
41 | "test-ci": "nyc --reporter=lcov --reporter=text npm test", | 87 | "test-ci": "nyc --reporter=lcov --reporter=text npm test", |
42 | "test-cov": "nyc --reporter=html --reporter=text npm test" | 88 | "test-cov": "nyc --reporter=html --reporter=text npm test" |
43 | - } | 89 | + }, |
90 | + "version": "2.1.30" | ||
44 | } | 91 | } | ... | ... |
1 | { | 1 | { |
2 | + "_args": [ | ||
3 | + [ | ||
4 | + "mime@1.6.0", | ||
5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" | ||
6 | + ] | ||
7 | + ], | ||
8 | + "_from": "mime@1.6.0", | ||
9 | + "_id": "mime@1.6.0", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", | ||
12 | + "_location": "/mime", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "mime@1.6.0", | ||
18 | + "name": "mime", | ||
19 | + "escapedName": "mime", | ||
20 | + "rawSpec": "1.6.0", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.6.0" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/send" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", | ||
28 | + "_spec": "1.6.0", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
2 | "author": { | 30 | "author": { |
3 | "name": "Robert Kieffer", | 31 | "name": "Robert Kieffer", |
4 | - "url": "http://github.com/broofa", | 32 | + "email": "robert@broofa.com", |
5 | - "email": "robert@broofa.com" | 33 | + "url": "http://github.com/broofa" |
6 | }, | 34 | }, |
7 | "bin": { | 35 | "bin": { |
8 | "mime": "cli.js" | 36 | "mime": "cli.js" |
9 | }, | 37 | }, |
10 | - "engines": { | 38 | + "bugs": { |
11 | - "node": ">=4" | 39 | + "url": "https://github.com/broofa/node-mime/issues" |
12 | }, | 40 | }, |
13 | "contributors": [ | 41 | "contributors": [ |
14 | { | 42 | { |
15 | "name": "Benjamin Thomas", | 43 | "name": "Benjamin Thomas", |
16 | - "url": "http://github.com/bentomas", | 44 | + "email": "benjamin@benjaminthomas.org", |
17 | - "email": "benjamin@benjaminthomas.org" | 45 | + "url": "http://github.com/bentomas" |
18 | } | 46 | } |
19 | ], | 47 | ], |
20 | - "description": "A comprehensive library for mime-type mapping", | ||
21 | - "license": "MIT", | ||
22 | "dependencies": {}, | 48 | "dependencies": {}, |
49 | + "description": "A comprehensive library for mime-type mapping", | ||
23 | "devDependencies": { | 50 | "devDependencies": { |
24 | "github-release-notes": "0.13.1", | 51 | "github-release-notes": "0.13.1", |
25 | "mime-db": "1.31.0", | 52 | "mime-db": "1.31.0", |
26 | "mime-score": "1.1.0" | 53 | "mime-score": "1.1.0" |
27 | }, | 54 | }, |
28 | - "scripts": { | 55 | + "engines": { |
29 | - "prepare": "node src/build.js", | 56 | + "node": ">=4" |
30 | - "changelog": "gren changelog --tags=all --generate --override", | ||
31 | - "test": "node src/test.js" | ||
32 | }, | 57 | }, |
58 | + "homepage": "https://github.com/broofa/node-mime#readme", | ||
33 | "keywords": [ | 59 | "keywords": [ |
34 | "util", | 60 | "util", |
35 | "mime" | 61 | "mime" |
36 | ], | 62 | ], |
63 | + "license": "MIT", | ||
37 | "main": "mime.js", | 64 | "main": "mime.js", |
38 | "name": "mime", | 65 | "name": "mime", |
39 | "repository": { | 66 | "repository": { |
40 | - "url": "https://github.com/broofa/node-mime", | 67 | + "url": "git+https://github.com/broofa/node-mime.git", |
41 | "type": "git" | 68 | "type": "git" |
42 | }, | 69 | }, |
70 | + "scripts": { | ||
71 | + "changelog": "gren changelog --tags=all --generate --override", | ||
72 | + "prepare": "node src/build.js", | ||
73 | + "test": "node src/test.js" | ||
74 | + }, | ||
43 | "version": "1.6.0" | 75 | "version": "1.6.0" |
44 | } | 76 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "ms", | 2 | + "_args": [ |
3 | - "version": "2.0.0", | 3 | + [ |
4 | - "description": "Tiny milisecond conversion utility", | 4 | + "ms@2.0.0", |
5 | - "repository": "zeit/ms", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "main": "./index", | 6 | + ] |
7 | - "files": [ | ||
8 | - "index.js" | ||
9 | ], | 7 | ], |
10 | - "scripts": { | 8 | + "_from": "ms@2.0.0", |
11 | - "precommit": "lint-staged", | 9 | + "_id": "ms@2.0.0", |
12 | - "lint": "eslint lib/* bin/*", | 10 | + "_inBundle": false, |
13 | - "test": "mocha tests.js" | 11 | + "_integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", |
12 | + "_location": "/ms", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "ms@2.0.0", | ||
18 | + "name": "ms", | ||
19 | + "escapedName": "ms", | ||
20 | + "rawSpec": "2.0.0", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "2.0.0" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/debug" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", | ||
28 | + "_spec": "2.0.0", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "bugs": { | ||
31 | + "url": "https://github.com/zeit/ms/issues" | ||
32 | + }, | ||
33 | + "description": "Tiny milisecond conversion utility", | ||
34 | + "devDependencies": { | ||
35 | + "eslint": "3.19.0", | ||
36 | + "expect.js": "0.3.1", | ||
37 | + "husky": "0.13.3", | ||
38 | + "lint-staged": "3.4.1", | ||
39 | + "mocha": "3.4.1" | ||
14 | }, | 40 | }, |
15 | "eslintConfig": { | 41 | "eslintConfig": { |
16 | "extends": "eslint:recommended", | 42 | "extends": "eslint:recommended", |
... | @@ -19,6 +45,11 @@ | ... | @@ -19,6 +45,11 @@ |
19 | "es6": true | 45 | "es6": true |
20 | } | 46 | } |
21 | }, | 47 | }, |
48 | + "files": [ | ||
49 | + "index.js" | ||
50 | + ], | ||
51 | + "homepage": "https://github.com/zeit/ms#readme", | ||
52 | + "license": "MIT", | ||
22 | "lint-staged": { | 53 | "lint-staged": { |
23 | "*.js": [ | 54 | "*.js": [ |
24 | "npm run lint", | 55 | "npm run lint", |
... | @@ -26,12 +57,16 @@ | ... | @@ -26,12 +57,16 @@ |
26 | "git add" | 57 | "git add" |
27 | ] | 58 | ] |
28 | }, | 59 | }, |
29 | - "license": "MIT", | 60 | + "main": "./index", |
30 | - "devDependencies": { | 61 | + "name": "ms", |
31 | - "eslint": "3.19.0", | 62 | + "repository": { |
32 | - "expect.js": "0.3.1", | 63 | + "type": "git", |
33 | - "husky": "0.13.3", | 64 | + "url": "git+https://github.com/zeit/ms.git" |
34 | - "lint-staged": "3.4.1", | 65 | + }, |
35 | - "mocha": "3.4.1" | 66 | + "scripts": { |
36 | - } | 67 | + "lint": "eslint lib/* bin/*", |
68 | + "precommit": "lint-staged", | ||
69 | + "test": "mocha tests.js" | ||
70 | + }, | ||
71 | + "version": "2.0.0" | ||
37 | } | 72 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "mysql", | 2 | + "_args": [ |
3 | - "description": "A node.js driver for mysql. It is written in JavaScript, does not require compiling, and is 100% MIT licensed.", | 3 | + [ |
4 | - "version": "2.18.1", | 4 | + "mysql@2.18.1", |
5 | - "license": "MIT", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "author": "Felix Geisendörfer <felix@debuggable.com> (http://debuggable.com/)", | 6 | + ] |
7 | + ], | ||
8 | + "_from": "mysql@2.18.1", | ||
9 | + "_id": "mysql@2.18.1", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha512-Bca+gk2YWmqp2Uf6k5NFEurwY/0td0cpebAucFpY/3jhrwrVGuxU2uQFCHjU19SJfje0yQvi+rVWdq78hR5lig==", | ||
12 | + "_location": "/mysql", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "mysql@2.18.1", | ||
18 | + "name": "mysql", | ||
19 | + "escapedName": "mysql", | ||
20 | + "rawSpec": "2.18.1", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "2.18.1" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/mysql/-/mysql-2.18.1.tgz", | ||
28 | + "_spec": "2.18.1", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "author": { | ||
31 | + "name": "Felix Geisendörfer", | ||
32 | + "email": "felix@debuggable.com", | ||
33 | + "url": "http://debuggable.com/" | ||
34 | + }, | ||
35 | + "bugs": { | ||
36 | + "url": "https://github.com/mysqljs/mysql/issues" | ||
37 | + }, | ||
7 | "contributors": [ | 38 | "contributors": [ |
8 | - "Andrey Sidorov <sidorares@yandex.ru>", | 39 | + { |
9 | - "Bradley Grainger <bgrainger@gmail.com>", | 40 | + "name": "Andrey Sidorov", |
10 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | 41 | + "email": "sidorares@yandex.ru" |
11 | - "Diogo Resende <dresende@thinkdigital.pt>", | 42 | + }, |
12 | - "Nathan Woltman <nwoltman@outlook.com>" | 43 | + { |
44 | + "name": "Bradley Grainger", | ||
45 | + "email": "bgrainger@gmail.com" | ||
46 | + }, | ||
47 | + { | ||
48 | + "name": "Douglas Christopher Wilson", | ||
49 | + "email": "doug@somethingdoug.com" | ||
50 | + }, | ||
51 | + { | ||
52 | + "name": "Diogo Resende", | ||
53 | + "email": "dresende@thinkdigital.pt" | ||
54 | + }, | ||
55 | + { | ||
56 | + "name": "Nathan Woltman", | ||
57 | + "email": "nwoltman@outlook.com" | ||
58 | + } | ||
13 | ], | 59 | ], |
14 | - "repository": "mysqljs/mysql", | ||
15 | "dependencies": { | 60 | "dependencies": { |
16 | "bignumber.js": "9.0.0", | 61 | "bignumber.js": "9.0.0", |
17 | "readable-stream": "2.3.7", | 62 | "readable-stream": "2.3.7", |
18 | "safe-buffer": "5.1.2", | 63 | "safe-buffer": "5.1.2", |
19 | "sqlstring": "2.3.1" | 64 | "sqlstring": "2.3.1" |
20 | }, | 65 | }, |
66 | + "description": "A node.js driver for mysql. It is written in JavaScript, does not require compiling, and is 100% MIT licensed.", | ||
21 | "devDependencies": { | 67 | "devDependencies": { |
22 | "after": "0.8.2", | 68 | "after": "0.8.2", |
23 | "eslint": "5.16.0", | 69 | "eslint": "5.16.0", |
... | @@ -26,6 +72,9 @@ | ... | @@ -26,6 +72,9 @@ |
26 | "urun": "0.0.8", | 72 | "urun": "0.0.8", |
27 | "utest": "0.0.8" | 73 | "utest": "0.0.8" |
28 | }, | 74 | }, |
75 | + "engines": { | ||
76 | + "node": ">= 0.6" | ||
77 | + }, | ||
29 | "files": [ | 78 | "files": [ |
30 | "lib/", | 79 | "lib/", |
31 | "Changes.md", | 80 | "Changes.md", |
... | @@ -33,8 +82,12 @@ | ... | @@ -33,8 +82,12 @@ |
33 | "Readme.md", | 82 | "Readme.md", |
34 | "index.js" | 83 | "index.js" |
35 | ], | 84 | ], |
36 | - "engines": { | 85 | + "homepage": "https://github.com/mysqljs/mysql#readme", |
37 | - "node": ">= 0.6" | 86 | + "license": "MIT", |
87 | + "name": "mysql", | ||
88 | + "repository": { | ||
89 | + "type": "git", | ||
90 | + "url": "git+https://github.com/mysqljs/mysql.git" | ||
38 | }, | 91 | }, |
39 | "scripts": { | 92 | "scripts": { |
40 | "lint": "eslint . && node tool/lint-readme.js", | 93 | "lint": "eslint . && node tool/lint-readme.js", |
... | @@ -42,5 +95,6 @@ | ... | @@ -42,5 +95,6 @@ |
42 | "test-ci": "node tool/install-nyc.js --nyc-optional --reporter=text -- npm test", | 95 | "test-ci": "node tool/install-nyc.js --nyc-optional --reporter=text -- npm test", |
43 | "test-cov": "node tool/install-nyc.js --reporter=html --reporter=text -- npm test", | 96 | "test-cov": "node tool/install-nyc.js --reporter=html --reporter=text -- npm test", |
44 | "version": "node tool/version-changes.js && git add Changes.md" | 97 | "version": "node tool/version-changes.js && git add Changes.md" |
45 | - } | 98 | + }, |
99 | + "version": "2.18.1" | ||
46 | } | 100 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "negotiator", | 2 | + "_args": [ |
3 | - "description": "HTTP content negotiation", | 3 | + [ |
4 | - "version": "0.6.2", | 4 | + "negotiator@0.6.2", |
5 | - "contributors": [ | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | 6 | + ] |
7 | - "Federico Romero <federico.romero@outboxlabs.com>", | ||
8 | - "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)" | ||
9 | ], | 7 | ], |
10 | - "license": "MIT", | 8 | + "_from": "negotiator@0.6.2", |
11 | - "keywords": [ | 9 | + "_id": "negotiator@0.6.2", |
12 | - "http", | 10 | + "_inBundle": false, |
13 | - "content negotiation", | 11 | + "_integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", |
14 | - "accept", | 12 | + "_location": "/negotiator", |
15 | - "accept-language", | 13 | + "_phantomChildren": {}, |
16 | - "accept-encoding", | 14 | + "_requested": { |
17 | - "accept-charset" | 15 | + "type": "version", |
16 | + "registry": true, | ||
17 | + "raw": "negotiator@0.6.2", | ||
18 | + "name": "negotiator", | ||
19 | + "escapedName": "negotiator", | ||
20 | + "rawSpec": "0.6.2", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "0.6.2" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/accepts" | ||
18 | ], | 26 | ], |
19 | - "repository": "jshttp/negotiator", | 27 | + "_resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", |
28 | + "_spec": "0.6.2", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "bugs": { | ||
31 | + "url": "https://github.com/jshttp/negotiator/issues" | ||
32 | + }, | ||
33 | + "contributors": [ | ||
34 | + { | ||
35 | + "name": "Douglas Christopher Wilson", | ||
36 | + "email": "doug@somethingdoug.com" | ||
37 | + }, | ||
38 | + { | ||
39 | + "name": "Federico Romero", | ||
40 | + "email": "federico.romero@outboxlabs.com" | ||
41 | + }, | ||
42 | + { | ||
43 | + "name": "Isaac Z. Schlueter", | ||
44 | + "email": "i@izs.me", | ||
45 | + "url": "http://blog.izs.me/" | ||
46 | + } | ||
47 | + ], | ||
48 | + "description": "HTTP content negotiation", | ||
20 | "devDependencies": { | 49 | "devDependencies": { |
21 | "eslint": "5.16.0", | 50 | "eslint": "5.16.0", |
22 | "eslint-plugin-markdown": "1.0.0", | 51 | "eslint-plugin-markdown": "1.0.0", |
23 | "mocha": "6.1.4", | 52 | "mocha": "6.1.4", |
24 | "nyc": "14.0.0" | 53 | "nyc": "14.0.0" |
25 | }, | 54 | }, |
55 | + "engines": { | ||
56 | + "node": ">= 0.6" | ||
57 | + }, | ||
26 | "files": [ | 58 | "files": [ |
27 | "lib/", | 59 | "lib/", |
28 | "HISTORY.md", | 60 | "HISTORY.md", |
... | @@ -30,13 +62,26 @@ | ... | @@ -30,13 +62,26 @@ |
30 | "index.js", | 62 | "index.js", |
31 | "README.md" | 63 | "README.md" |
32 | ], | 64 | ], |
33 | - "engines": { | 65 | + "homepage": "https://github.com/jshttp/negotiator#readme", |
34 | - "node": ">= 0.6" | 66 | + "keywords": [ |
67 | + "http", | ||
68 | + "content negotiation", | ||
69 | + "accept", | ||
70 | + "accept-language", | ||
71 | + "accept-encoding", | ||
72 | + "accept-charset" | ||
73 | + ], | ||
74 | + "license": "MIT", | ||
75 | + "name": "negotiator", | ||
76 | + "repository": { | ||
77 | + "type": "git", | ||
78 | + "url": "git+https://github.com/jshttp/negotiator.git" | ||
35 | }, | 79 | }, |
36 | "scripts": { | 80 | "scripts": { |
37 | "lint": "eslint --plugin markdown --ext js,md .", | 81 | "lint": "eslint --plugin markdown --ext js,md .", |
38 | "test": "mocha --reporter spec --check-leaks --bail test/", | 82 | "test": "mocha --reporter spec --check-leaks --bail test/", |
39 | "test-cov": "nyc --reporter=html --reporter=text npm test", | 83 | "test-cov": "nyc --reporter=html --reporter=text npm test", |
40 | "test-travis": "nyc --reporter=text npm test" | 84 | "test-travis": "nyc --reporter=text npm test" |
41 | - } | 85 | + }, |
86 | + "version": "0.6.2" | ||
42 | } | 87 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "on-finished", | 2 | + "_args": [ |
3 | - "description": "Execute a callback when a request closes, finishes, or errors", | 3 | + [ |
4 | - "version": "2.3.0", | 4 | + "on-finished@2.3.0", |
5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" | ||
6 | + ] | ||
7 | + ], | ||
8 | + "_from": "on-finished@2.3.0", | ||
9 | + "_id": "on-finished@2.3.0", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", | ||
12 | + "_location": "/on-finished", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "on-finished@2.3.0", | ||
18 | + "name": "on-finished", | ||
19 | + "escapedName": "on-finished", | ||
20 | + "rawSpec": "2.3.0", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "2.3.0" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/body-parser", | ||
26 | + "/express", | ||
27 | + "/finalhandler", | ||
28 | + "/send" | ||
29 | + ], | ||
30 | + "_resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", | ||
31 | + "_spec": "2.3.0", | ||
32 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
33 | + "bugs": { | ||
34 | + "url": "https://github.com/jshttp/on-finished/issues" | ||
35 | + }, | ||
5 | "contributors": [ | 36 | "contributors": [ |
6 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | 37 | + { |
7 | - "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)" | 38 | + "name": "Douglas Christopher Wilson", |
39 | + "email": "doug@somethingdoug.com" | ||
40 | + }, | ||
41 | + { | ||
42 | + "name": "Jonathan Ong", | ||
43 | + "email": "me@jongleberry.com", | ||
44 | + "url": "http://jongleberry.com" | ||
45 | + } | ||
8 | ], | 46 | ], |
9 | - "license": "MIT", | ||
10 | - "repository": "jshttp/on-finished", | ||
11 | "dependencies": { | 47 | "dependencies": { |
12 | "ee-first": "1.1.1" | 48 | "ee-first": "1.1.1" |
13 | }, | 49 | }, |
50 | + "description": "Execute a callback when a request closes, finishes, or errors", | ||
14 | "devDependencies": { | 51 | "devDependencies": { |
15 | "istanbul": "0.3.9", | 52 | "istanbul": "0.3.9", |
16 | "mocha": "2.2.5" | 53 | "mocha": "2.2.5" |
... | @@ -23,9 +60,17 @@ | ... | @@ -23,9 +60,17 @@ |
23 | "LICENSE", | 60 | "LICENSE", |
24 | "index.js" | 61 | "index.js" |
25 | ], | 62 | ], |
63 | + "homepage": "https://github.com/jshttp/on-finished#readme", | ||
64 | + "license": "MIT", | ||
65 | + "name": "on-finished", | ||
66 | + "repository": { | ||
67 | + "type": "git", | ||
68 | + "url": "git+https://github.com/jshttp/on-finished.git" | ||
69 | + }, | ||
26 | "scripts": { | 70 | "scripts": { |
27 | "test": "mocha --reporter spec --bail --check-leaks test/", | 71 | "test": "mocha --reporter spec --bail --check-leaks test/", |
28 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", | 72 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", |
29 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" | 73 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" |
30 | - } | 74 | + }, |
75 | + "version": "2.3.0" | ||
31 | } | 76 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "parseurl", | 2 | + "_args": [ |
3 | - "description": "parse a url with memoization", | 3 | + [ |
4 | - "version": "1.3.3", | 4 | + "parseurl@1.3.3", |
5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" | ||
6 | + ] | ||
7 | + ], | ||
8 | + "_from": "parseurl@1.3.3", | ||
9 | + "_id": "parseurl@1.3.3", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", | ||
12 | + "_location": "/parseurl", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "parseurl@1.3.3", | ||
18 | + "name": "parseurl", | ||
19 | + "escapedName": "parseurl", | ||
20 | + "rawSpec": "1.3.3", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.3.3" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express", | ||
26 | + "/finalhandler", | ||
27 | + "/serve-static" | ||
28 | + ], | ||
29 | + "_resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", | ||
30 | + "_spec": "1.3.3", | ||
31 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
32 | + "bugs": { | ||
33 | + "url": "https://github.com/pillarjs/parseurl/issues" | ||
34 | + }, | ||
5 | "contributors": [ | 35 | "contributors": [ |
6 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | 36 | + { |
7 | - "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)" | 37 | + "name": "Douglas Christopher Wilson", |
38 | + "email": "doug@somethingdoug.com" | ||
39 | + }, | ||
40 | + { | ||
41 | + "name": "Jonathan Ong", | ||
42 | + "email": "me@jongleberry.com", | ||
43 | + "url": "http://jongleberry.com" | ||
44 | + } | ||
8 | ], | 45 | ], |
9 | - "repository": "pillarjs/parseurl", | 46 | + "description": "parse a url with memoization", |
10 | - "license": "MIT", | ||
11 | "devDependencies": { | 47 | "devDependencies": { |
12 | "beautify-benchmark": "0.2.4", | 48 | "beautify-benchmark": "0.2.4", |
13 | "benchmark": "2.1.4", | 49 | "benchmark": "2.1.4", |
... | @@ -21,14 +57,21 @@ | ... | @@ -21,14 +57,21 @@ |
21 | "istanbul": "0.4.5", | 57 | "istanbul": "0.4.5", |
22 | "mocha": "6.1.3" | 58 | "mocha": "6.1.3" |
23 | }, | 59 | }, |
60 | + "engines": { | ||
61 | + "node": ">= 0.8" | ||
62 | + }, | ||
24 | "files": [ | 63 | "files": [ |
25 | "LICENSE", | 64 | "LICENSE", |
26 | "HISTORY.md", | 65 | "HISTORY.md", |
27 | "README.md", | 66 | "README.md", |
28 | "index.js" | 67 | "index.js" |
29 | ], | 68 | ], |
30 | - "engines": { | 69 | + "homepage": "https://github.com/pillarjs/parseurl#readme", |
31 | - "node": ">= 0.8" | 70 | + "license": "MIT", |
71 | + "name": "parseurl", | ||
72 | + "repository": { | ||
73 | + "type": "git", | ||
74 | + "url": "git+https://github.com/pillarjs/parseurl.git" | ||
32 | }, | 75 | }, |
33 | "scripts": { | 76 | "scripts": { |
34 | "bench": "node benchmark/index.js", | 77 | "bench": "node benchmark/index.js", |
... | @@ -36,5 +79,6 @@ | ... | @@ -36,5 +79,6 @@ |
36 | "test": "mocha --check-leaks --bail --reporter spec test/", | 79 | "test": "mocha --check-leaks --bail --reporter spec test/", |
37 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot test/", | 80 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot test/", |
38 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec test/" | 81 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec test/" |
39 | - } | 82 | + }, |
83 | + "version": "1.3.3" | ||
40 | } | 84 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "path-to-regexp", | 2 | + "_args": [ |
3 | + [ | ||
4 | + "path-to-regexp@0.1.7", | ||
5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" | ||
6 | + ] | ||
7 | + ], | ||
8 | + "_from": "path-to-regexp@0.1.7", | ||
9 | + "_id": "path-to-regexp@0.1.7", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", | ||
12 | + "_location": "/path-to-regexp", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "path-to-regexp@0.1.7", | ||
18 | + "name": "path-to-regexp", | ||
19 | + "escapedName": "path-to-regexp", | ||
20 | + "rawSpec": "0.1.7", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "0.1.7" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", | ||
28 | + "_spec": "0.1.7", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "bugs": { | ||
31 | + "url": "https://github.com/component/path-to-regexp/issues" | ||
32 | + }, | ||
33 | + "component": { | ||
34 | + "scripts": { | ||
35 | + "path-to-regexp": "index.js" | ||
36 | + } | ||
37 | + }, | ||
3 | "description": "Express style path to RegExp utility", | 38 | "description": "Express style path to RegExp utility", |
4 | - "version": "0.1.7", | 39 | + "devDependencies": { |
40 | + "istanbul": "^0.2.6", | ||
41 | + "mocha": "^1.17.1" | ||
42 | + }, | ||
5 | "files": [ | 43 | "files": [ |
6 | "index.js", | 44 | "index.js", |
7 | "LICENSE" | 45 | "LICENSE" |
8 | ], | 46 | ], |
9 | - "scripts": { | 47 | + "homepage": "https://github.com/component/path-to-regexp#readme", |
10 | - "test": "istanbul cover _mocha -- -R spec" | ||
11 | - }, | ||
12 | "keywords": [ | 48 | "keywords": [ |
13 | "express", | 49 | "express", |
14 | "regexp" | 50 | "regexp" |
15 | ], | 51 | ], |
16 | - "component": { | ||
17 | - "scripts": { | ||
18 | - "path-to-regexp": "index.js" | ||
19 | - } | ||
20 | - }, | ||
21 | "license": "MIT", | 52 | "license": "MIT", |
53 | + "name": "path-to-regexp", | ||
22 | "repository": { | 54 | "repository": { |
23 | "type": "git", | 55 | "type": "git", |
24 | - "url": "https://github.com/component/path-to-regexp.git" | 56 | + "url": "git+https://github.com/component/path-to-regexp.git" |
25 | }, | 57 | }, |
26 | - "devDependencies": { | 58 | + "scripts": { |
27 | - "mocha": "^1.17.1", | 59 | + "test": "istanbul cover _mocha -- -R spec" |
28 | - "istanbul": "^0.2.6" | 60 | + }, |
29 | - } | 61 | + "version": "0.1.7" |
30 | } | 62 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "process-nextick-args", | 2 | + "_args": [ |
3 | - "version": "2.0.1", | 3 | + [ |
4 | - "description": "process.nextTick but always with args", | 4 | + "process-nextick-args@2.0.1", |
5 | - "main": "index.js", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "files": [ | 6 | + ] |
7 | - "index.js" | ||
8 | ], | 7 | ], |
9 | - "scripts": { | 8 | + "_from": "process-nextick-args@2.0.1", |
10 | - "test": "node test.js" | 9 | + "_id": "process-nextick-args@2.0.1", |
11 | - }, | 10 | + "_inBundle": false, |
12 | - "repository": { | 11 | + "_integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", |
13 | - "type": "git", | 12 | + "_location": "/process-nextick-args", |
14 | - "url": "https://github.com/calvinmetcalf/process-nextick-args.git" | 13 | + "_phantomChildren": {}, |
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "process-nextick-args@2.0.1", | ||
18 | + "name": "process-nextick-args", | ||
19 | + "escapedName": "process-nextick-args", | ||
20 | + "rawSpec": "2.0.1", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "2.0.1" | ||
15 | }, | 23 | }, |
24 | + "_requiredBy": [ | ||
25 | + "/readable-stream" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", | ||
28 | + "_spec": "2.0.1", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
16 | "author": "", | 30 | "author": "", |
17 | - "license": "MIT", | ||
18 | "bugs": { | 31 | "bugs": { |
19 | "url": "https://github.com/calvinmetcalf/process-nextick-args/issues" | 32 | "url": "https://github.com/calvinmetcalf/process-nextick-args/issues" |
20 | }, | 33 | }, |
21 | - "homepage": "https://github.com/calvinmetcalf/process-nextick-args", | 34 | + "description": "process.nextTick but always with args", |
22 | "devDependencies": { | 35 | "devDependencies": { |
23 | "tap": "~0.2.6" | 36 | "tap": "~0.2.6" |
24 | - } | 37 | + }, |
38 | + "files": [ | ||
39 | + "index.js" | ||
40 | + ], | ||
41 | + "homepage": "https://github.com/calvinmetcalf/process-nextick-args", | ||
42 | + "license": "MIT", | ||
43 | + "main": "index.js", | ||
44 | + "name": "process-nextick-args", | ||
45 | + "repository": { | ||
46 | + "type": "git", | ||
47 | + "url": "git+https://github.com/calvinmetcalf/process-nextick-args.git" | ||
48 | + }, | ||
49 | + "scripts": { | ||
50 | + "test": "node test.js" | ||
51 | + }, | ||
52 | + "version": "2.0.1" | ||
25 | } | 53 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "proxy-addr", | 2 | + "_args": [ |
3 | - "description": "Determine address of proxied request", | 3 | + [ |
4 | - "version": "2.0.6", | 4 | + "proxy-addr@2.0.6", |
5 | - "author": "Douglas Christopher Wilson <doug@somethingdoug.com>", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "license": "MIT", | 6 | + ] |
7 | - "keywords": [ | ||
8 | - "ip", | ||
9 | - "proxy", | ||
10 | - "x-forwarded-for" | ||
11 | ], | 7 | ], |
12 | - "repository": "jshttp/proxy-addr", | 8 | + "_from": "proxy-addr@2.0.6", |
9 | + "_id": "proxy-addr@2.0.6", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", | ||
12 | + "_location": "/proxy-addr", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "proxy-addr@2.0.6", | ||
18 | + "name": "proxy-addr", | ||
19 | + "escapedName": "proxy-addr", | ||
20 | + "rawSpec": "2.0.6", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "2.0.6" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", | ||
28 | + "_spec": "2.0.6", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "author": { | ||
31 | + "name": "Douglas Christopher Wilson", | ||
32 | + "email": "doug@somethingdoug.com" | ||
33 | + }, | ||
34 | + "bugs": { | ||
35 | + "url": "https://github.com/jshttp/proxy-addr/issues" | ||
36 | + }, | ||
13 | "dependencies": { | 37 | "dependencies": { |
14 | "forwarded": "~0.1.2", | 38 | "forwarded": "~0.1.2", |
15 | "ipaddr.js": "1.9.1" | 39 | "ipaddr.js": "1.9.1" |
16 | }, | 40 | }, |
41 | + "description": "Determine address of proxied request", | ||
17 | "devDependencies": { | 42 | "devDependencies": { |
18 | - "benchmark": "2.1.4", | ||
19 | "beautify-benchmark": "0.2.4", | 43 | "beautify-benchmark": "0.2.4", |
44 | + "benchmark": "2.1.4", | ||
20 | "deep-equal": "1.0.1", | 45 | "deep-equal": "1.0.1", |
21 | "eslint": "6.8.0", | 46 | "eslint": "6.8.0", |
22 | "eslint-config-standard": "14.1.0", | 47 | "eslint-config-standard": "14.1.0", |
... | @@ -28,14 +53,26 @@ | ... | @@ -28,14 +53,26 @@ |
28 | "mocha": "7.0.1", | 53 | "mocha": "7.0.1", |
29 | "nyc": "15.0.0" | 54 | "nyc": "15.0.0" |
30 | }, | 55 | }, |
56 | + "engines": { | ||
57 | + "node": ">= 0.10" | ||
58 | + }, | ||
31 | "files": [ | 59 | "files": [ |
32 | "LICENSE", | 60 | "LICENSE", |
33 | "HISTORY.md", | 61 | "HISTORY.md", |
34 | "README.md", | 62 | "README.md", |
35 | "index.js" | 63 | "index.js" |
36 | ], | 64 | ], |
37 | - "engines": { | 65 | + "homepage": "https://github.com/jshttp/proxy-addr#readme", |
38 | - "node": ">= 0.10" | 66 | + "keywords": [ |
67 | + "ip", | ||
68 | + "proxy", | ||
69 | + "x-forwarded-for" | ||
70 | + ], | ||
71 | + "license": "MIT", | ||
72 | + "name": "proxy-addr", | ||
73 | + "repository": { | ||
74 | + "type": "git", | ||
75 | + "url": "git+https://github.com/jshttp/proxy-addr.git" | ||
39 | }, | 76 | }, |
40 | "scripts": { | 77 | "scripts": { |
41 | "bench": "node benchmark/index.js", | 78 | "bench": "node benchmark/index.js", |
... | @@ -43,5 +80,6 @@ | ... | @@ -43,5 +80,6 @@ |
43 | "test": "mocha --reporter spec --bail --check-leaks test/", | 80 | "test": "mocha --reporter spec --bail --check-leaks test/", |
44 | "test-cov": "nyc --reporter=text npm test", | 81 | "test-cov": "nyc --reporter=text npm test", |
45 | "test-travis": "nyc --reporter=html --reporter=text npm test" | 82 | "test-travis": "nyc --reporter=html --reporter=text npm test" |
46 | - } | 83 | + }, |
84 | + "version": "2.0.6" | ||
47 | } | 85 | } | ... | ... |
1 | { | 1 | { |
2 | + "_args": [ | ||
3 | + [ | ||
4 | + "qs@6.7.0", | ||
5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" | ||
6 | + ] | ||
7 | + ], | ||
8 | + "_from": "qs@6.7.0", | ||
9 | + "_id": "qs@6.7.0", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", | ||
12 | + "_location": "/qs", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "qs@6.7.0", | ||
2 | "name": "qs", | 18 | "name": "qs", |
3 | - "description": "A querystring parser that supports nesting and arrays, with a depth limit", | 19 | + "escapedName": "qs", |
4 | - "homepage": "https://github.com/ljharb/qs", | 20 | + "rawSpec": "6.7.0", |
5 | - "version": "6.7.0", | 21 | + "saveSpec": null, |
6 | - "repository": { | 22 | + "fetchSpec": "6.7.0" |
7 | - "type": "git", | 23 | + }, |
8 | - "url": "https://github.com/ljharb/qs.git" | 24 | + "_requiredBy": [ |
9 | - }, | 25 | + "/body-parser", |
10 | - "main": "lib/index.js", | 26 | + "/express" |
11 | - "contributors": [ | 27 | + ], |
12 | - { | 28 | + "_resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", |
13 | - "name": "Jordan Harband", | 29 | + "_spec": "6.7.0", |
14 | - "email": "ljharb@gmail.com", | 30 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", |
15 | - "url": "http://ljharb.codes" | 31 | + "bugs": { |
16 | - } | 32 | + "url": "https://github.com/ljharb/qs/issues" |
17 | - ], | 33 | + }, |
18 | - "keywords": [ | 34 | + "contributors": [ |
19 | - "querystring", | 35 | + { |
20 | - "qs", | 36 | + "name": "Jordan Harband", |
21 | - "query", | 37 | + "email": "ljharb@gmail.com", |
22 | - "url", | 38 | + "url": "http://ljharb.codes" |
23 | - "parse", | 39 | + } |
24 | - "stringify" | 40 | + ], |
25 | - ], | 41 | + "dependencies": {}, |
26 | - "engines": { | 42 | + "description": "A querystring parser that supports nesting and arrays, with a depth limit", |
27 | - "node": ">=0.6" | 43 | + "devDependencies": { |
28 | - }, | 44 | + "@ljharb/eslint-config": "^13.1.1", |
29 | - "dependencies": {}, | 45 | + "browserify": "^16.2.3", |
30 | - "devDependencies": { | 46 | + "covert": "^1.1.1", |
31 | - "@ljharb/eslint-config": "^13.1.1", | 47 | + "editorconfig-tools": "^0.1.1", |
32 | - "browserify": "^16.2.3", | 48 | + "eslint": "^5.15.3", |
33 | - "covert": "^1.1.1", | 49 | + "evalmd": "^0.0.17", |
34 | - "editorconfig-tools": "^0.1.1", | 50 | + "for-each": "^0.3.3", |
35 | - "eslint": "^5.15.3", | 51 | + "iconv-lite": "^0.4.24", |
36 | - "evalmd": "^0.0.17", | 52 | + "mkdirp": "^0.5.1", |
37 | - "for-each": "^0.3.3", | 53 | + "object-inspect": "^1.6.0", |
38 | - "iconv-lite": "^0.4.24", | 54 | + "qs-iconv": "^1.0.4", |
39 | - "mkdirp": "^0.5.1", | 55 | + "safe-publish-latest": "^1.1.2", |
40 | - "object-inspect": "^1.6.0", | 56 | + "safer-buffer": "^2.1.2", |
41 | - "qs-iconv": "^1.0.4", | 57 | + "tape": "^4.10.1" |
42 | - "safe-publish-latest": "^1.1.2", | 58 | + }, |
43 | - "safer-buffer": "^2.1.2", | 59 | + "engines": { |
44 | - "tape": "^4.10.1" | 60 | + "node": ">=0.6" |
45 | - }, | 61 | + }, |
46 | - "scripts": { | 62 | + "homepage": "https://github.com/ljharb/qs", |
47 | - "prepublish": "safe-publish-latest && npm run dist", | 63 | + "keywords": [ |
48 | - "pretest": "npm run --silent readme && npm run --silent lint", | 64 | + "querystring", |
49 | - "test": "npm run --silent coverage", | 65 | + "qs", |
50 | - "tests-only": "node test", | 66 | + "query", |
51 | - "readme": "evalmd README.md", | 67 | + "url", |
52 | - "postlint": "editorconfig-tools check * lib/* test/*", | 68 | + "parse", |
53 | - "lint": "eslint lib/*.js test/*.js", | 69 | + "stringify" |
54 | - "coverage": "covert test", | 70 | + ], |
55 | - "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js" | 71 | + "license": "BSD-3-Clause", |
56 | - }, | 72 | + "main": "lib/index.js", |
57 | - "license": "BSD-3-Clause" | 73 | + "name": "qs", |
74 | + "repository": { | ||
75 | + "type": "git", | ||
76 | + "url": "git+https://github.com/ljharb/qs.git" | ||
77 | + }, | ||
78 | + "scripts": { | ||
79 | + "coverage": "covert test", | ||
80 | + "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js", | ||
81 | + "lint": "eslint lib/*.js test/*.js", | ||
82 | + "postlint": "editorconfig-tools check * lib/* test/*", | ||
83 | + "prepublish": "safe-publish-latest && npm run dist", | ||
84 | + "pretest": "npm run --silent readme && npm run --silent lint", | ||
85 | + "readme": "evalmd README.md", | ||
86 | + "test": "npm run --silent coverage", | ||
87 | + "tests-only": "node test" | ||
88 | + }, | ||
89 | + "version": "6.7.0" | ||
58 | } | 90 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "range-parser", | 2 | + "_args": [ |
3 | - "author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)", | 3 | + [ |
4 | - "description": "Range header field string parser", | 4 | + "range-parser@1.2.1", |
5 | - "version": "1.2.1", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "contributors": [ | 6 | + ] |
7 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | ||
8 | - "James Wyatt Cready <wyatt.cready@lanetix.com>", | ||
9 | - "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)" | ||
10 | ], | 7 | ], |
11 | - "license": "MIT", | 8 | + "_from": "range-parser@1.2.1", |
12 | - "keywords": [ | 9 | + "_id": "range-parser@1.2.1", |
13 | - "range", | 10 | + "_inBundle": false, |
14 | - "parser", | 11 | + "_integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", |
15 | - "http" | 12 | + "_location": "/range-parser", |
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "range-parser@1.2.1", | ||
18 | + "name": "range-parser", | ||
19 | + "escapedName": "range-parser", | ||
20 | + "rawSpec": "1.2.1", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.2.1" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express", | ||
26 | + "/send" | ||
16 | ], | 27 | ], |
17 | - "repository": "jshttp/range-parser", | 28 | + "_resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", |
29 | + "_spec": "1.2.1", | ||
30 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
31 | + "author": { | ||
32 | + "name": "TJ Holowaychuk", | ||
33 | + "email": "tj@vision-media.ca", | ||
34 | + "url": "http://tjholowaychuk.com" | ||
35 | + }, | ||
36 | + "bugs": { | ||
37 | + "url": "https://github.com/jshttp/range-parser/issues" | ||
38 | + }, | ||
39 | + "contributors": [ | ||
40 | + { | ||
41 | + "name": "Douglas Christopher Wilson", | ||
42 | + "email": "doug@somethingdoug.com" | ||
43 | + }, | ||
44 | + { | ||
45 | + "name": "James Wyatt Cready", | ||
46 | + "email": "wyatt.cready@lanetix.com" | ||
47 | + }, | ||
48 | + { | ||
49 | + "name": "Jonathan Ong", | ||
50 | + "email": "me@jongleberry.com", | ||
51 | + "url": "http://jongleberry.com" | ||
52 | + } | ||
53 | + ], | ||
54 | + "description": "Range header field string parser", | ||
18 | "devDependencies": { | 55 | "devDependencies": { |
19 | "deep-equal": "1.0.1", | 56 | "deep-equal": "1.0.1", |
20 | "eslint": "5.16.0", | 57 | "eslint": "5.16.0", |
21 | "eslint-config-standard": "12.0.0", | 58 | "eslint-config-standard": "12.0.0", |
22 | - "eslint-plugin-markdown": "1.0.0", | ||
23 | "eslint-plugin-import": "2.17.2", | 59 | "eslint-plugin-import": "2.17.2", |
60 | + "eslint-plugin-markdown": "1.0.0", | ||
24 | "eslint-plugin-node": "8.0.1", | 61 | "eslint-plugin-node": "8.0.1", |
25 | "eslint-plugin-promise": "4.1.1", | 62 | "eslint-plugin-promise": "4.1.1", |
26 | "eslint-plugin-standard": "4.0.0", | 63 | "eslint-plugin-standard": "4.0.0", |
27 | "mocha": "6.1.4", | 64 | "mocha": "6.1.4", |
28 | "nyc": "14.1.1" | 65 | "nyc": "14.1.1" |
29 | }, | 66 | }, |
67 | + "engines": { | ||
68 | + "node": ">= 0.6" | ||
69 | + }, | ||
30 | "files": [ | 70 | "files": [ |
31 | "HISTORY.md", | 71 | "HISTORY.md", |
32 | "LICENSE", | 72 | "LICENSE", |
33 | "index.js" | 73 | "index.js" |
34 | ], | 74 | ], |
35 | - "engines": { | 75 | + "homepage": "https://github.com/jshttp/range-parser#readme", |
36 | - "node": ">= 0.6" | 76 | + "keywords": [ |
77 | + "range", | ||
78 | + "parser", | ||
79 | + "http" | ||
80 | + ], | ||
81 | + "license": "MIT", | ||
82 | + "name": "range-parser", | ||
83 | + "repository": { | ||
84 | + "type": "git", | ||
85 | + "url": "git+https://github.com/jshttp/range-parser.git" | ||
37 | }, | 86 | }, |
38 | "scripts": { | 87 | "scripts": { |
39 | "lint": "eslint --plugin markdown --ext js,md .", | 88 | "lint": "eslint --plugin markdown --ext js,md .", |
40 | "test": "mocha --reporter spec", | 89 | "test": "mocha --reporter spec", |
41 | "test-cov": "nyc --reporter=html --reporter=text npm test", | 90 | "test-cov": "nyc --reporter=html --reporter=text npm test", |
42 | "test-travis": "nyc --reporter=text npm test" | 91 | "test-travis": "nyc --reporter=text npm test" |
43 | - } | 92 | + }, |
93 | + "version": "1.2.1" | ||
44 | } | 94 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "raw-body", | 2 | + "_from": "raw-body@2.4.0", |
3 | - "description": "Get and validate the raw body of a readable stream.", | 3 | + "_id": "raw-body@2.4.0", |
4 | - "version": "2.4.0", | 4 | + "_inBundle": false, |
5 | - "author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)", | 5 | + "_integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", |
6 | + "_location": "/raw-body", | ||
7 | + "_phantomChildren": {}, | ||
8 | + "_requested": { | ||
9 | + "type": "version", | ||
10 | + "registry": true, | ||
11 | + "raw": "raw-body@2.4.0", | ||
12 | + "name": "raw-body", | ||
13 | + "escapedName": "raw-body", | ||
14 | + "rawSpec": "2.4.0", | ||
15 | + "saveSpec": null, | ||
16 | + "fetchSpec": "2.4.0" | ||
17 | + }, | ||
18 | + "_requiredBy": [ | ||
19 | + "/body-parser" | ||
20 | + ], | ||
21 | + "_resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", | ||
22 | + "_shasum": "a1ce6fb9c9bc356ca52e89256ab59059e13d0332", | ||
23 | + "_spec": "raw-body@2.4.0", | ||
24 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory\\node_modules\\body-parser", | ||
25 | + "author": { | ||
26 | + "name": "Jonathan Ong", | ||
27 | + "email": "me@jongleberry.com", | ||
28 | + "url": "http://jongleberry.com" | ||
29 | + }, | ||
30 | + "bugs": { | ||
31 | + "url": "https://github.com/stream-utils/raw-body/issues" | ||
32 | + }, | ||
33 | + "bundleDependencies": false, | ||
6 | "contributors": [ | 34 | "contributors": [ |
7 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | 35 | + { |
8 | - "Raynos <raynos2@gmail.com>" | 36 | + "name": "Douglas Christopher Wilson", |
37 | + "email": "doug@somethingdoug.com" | ||
38 | + }, | ||
39 | + { | ||
40 | + "name": "Raynos", | ||
41 | + "email": "raynos2@gmail.com" | ||
42 | + } | ||
9 | ], | 43 | ], |
10 | - "license": "MIT", | ||
11 | - "repository": "stream-utils/raw-body", | ||
12 | "dependencies": { | 44 | "dependencies": { |
13 | "bytes": "3.1.0", | 45 | "bytes": "3.1.0", |
14 | "http-errors": "1.7.2", | 46 | "http-errors": "1.7.2", |
15 | "iconv-lite": "0.4.24", | 47 | "iconv-lite": "0.4.24", |
16 | "unpipe": "1.0.0" | 48 | "unpipe": "1.0.0" |
17 | }, | 49 | }, |
50 | + "deprecated": false, | ||
51 | + "description": "Get and validate the raw body of a readable stream.", | ||
18 | "devDependencies": { | 52 | "devDependencies": { |
19 | "bluebird": "3.5.4", | 53 | "bluebird": "3.5.4", |
20 | "eslint": "5.16.0", | 54 | "eslint": "5.16.0", |
... | @@ -39,10 +73,18 @@ | ... | @@ -39,10 +73,18 @@ |
39 | "index.d.ts", | 73 | "index.d.ts", |
40 | "index.js" | 74 | "index.js" |
41 | ], | 75 | ], |
76 | + "homepage": "https://github.com/stream-utils/raw-body#readme", | ||
77 | + "license": "MIT", | ||
78 | + "name": "raw-body", | ||
79 | + "repository": { | ||
80 | + "type": "git", | ||
81 | + "url": "git+https://github.com/stream-utils/raw-body.git" | ||
82 | + }, | ||
42 | "scripts": { | 83 | "scripts": { |
43 | "lint": "eslint --plugin markdown --ext js,md .", | 84 | "lint": "eslint --plugin markdown --ext js,md .", |
44 | "test": "mocha --trace-deprecation --reporter spec --bail --check-leaks test/", | 85 | "test": "mocha --trace-deprecation --reporter spec --bail --check-leaks test/", |
45 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --trace-deprecation --reporter dot --check-leaks test/", | 86 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --trace-deprecation --reporter dot --check-leaks test/", |
46 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --trace-deprecation --reporter spec --check-leaks test/" | 87 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --trace-deprecation --reporter spec --check-leaks test/" |
47 | - } | 88 | + }, |
89 | + "version": "2.4.0" | ||
48 | } | 90 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "readable-stream", | 2 | + "_args": [ |
3 | - "version": "2.3.7", | 3 | + [ |
4 | - "description": "Streams3, a user-land copy of the stream library from Node.js", | 4 | + "readable-stream@2.3.7", |
5 | - "main": "readable.js", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | + ] | ||
7 | + ], | ||
8 | + "_from": "readable-stream@2.3.7", | ||
9 | + "_id": "readable-stream@2.3.7", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", | ||
12 | + "_location": "/readable-stream", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "readable-stream@2.3.7", | ||
18 | + "name": "readable-stream", | ||
19 | + "escapedName": "readable-stream", | ||
20 | + "rawSpec": "2.3.7", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "2.3.7" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/mysql" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", | ||
28 | + "_spec": "2.3.7", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "browser": { | ||
31 | + "util": false, | ||
32 | + "./readable.js": "./readable-browser.js", | ||
33 | + "./writable.js": "./writable-browser.js", | ||
34 | + "./duplex.js": "./duplex-browser.js", | ||
35 | + "./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js" | ||
36 | + }, | ||
37 | + "bugs": { | ||
38 | + "url": "https://github.com/nodejs/readable-stream/issues" | ||
39 | + }, | ||
6 | "dependencies": { | 40 | "dependencies": { |
7 | "core-util-is": "~1.0.0", | 41 | "core-util-is": "~1.0.0", |
8 | "inherits": "~2.0.3", | 42 | "inherits": "~2.0.3", |
... | @@ -12,6 +46,7 @@ | ... | @@ -12,6 +46,7 @@ |
12 | "string_decoder": "~1.1.1", | 46 | "string_decoder": "~1.1.1", |
13 | "util-deprecate": "~1.0.1" | 47 | "util-deprecate": "~1.0.1" |
14 | }, | 48 | }, |
49 | + "description": "Streams3, a user-land copy of the stream library from Node.js", | ||
15 | "devDependencies": { | 50 | "devDependencies": { |
16 | "assert": "^1.4.0", | 51 | "assert": "^1.4.0", |
17 | "babel-polyfill": "^6.9.1", | 52 | "babel-polyfill": "^6.9.1", |
... | @@ -21,32 +56,29 @@ | ... | @@ -21,32 +56,29 @@ |
21 | "tap": "^0.7.0", | 56 | "tap": "^0.7.0", |
22 | "tape": "^4.8.0" | 57 | "tape": "^4.8.0" |
23 | }, | 58 | }, |
24 | - "scripts": { | 59 | + "homepage": "https://github.com/nodejs/readable-stream#readme", |
25 | - "test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js", | ||
26 | - "ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js", | ||
27 | - "cover": "nyc npm test", | ||
28 | - "report": "nyc report --reporter=lcov" | ||
29 | - }, | ||
30 | - "repository": { | ||
31 | - "type": "git", | ||
32 | - "url": "git://github.com/nodejs/readable-stream" | ||
33 | - }, | ||
34 | "keywords": [ | 60 | "keywords": [ |
35 | "readable", | 61 | "readable", |
36 | "stream", | 62 | "stream", |
37 | "pipe" | 63 | "pipe" |
38 | ], | 64 | ], |
39 | - "browser": { | 65 | + "license": "MIT", |
40 | - "util": false, | 66 | + "main": "readable.js", |
41 | - "./readable.js": "./readable-browser.js", | 67 | + "name": "readable-stream", |
42 | - "./writable.js": "./writable-browser.js", | ||
43 | - "./duplex.js": "./duplex-browser.js", | ||
44 | - "./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js" | ||
45 | - }, | ||
46 | "nyc": { | 68 | "nyc": { |
47 | "include": [ | 69 | "include": [ |
48 | "lib/**.js" | 70 | "lib/**.js" |
49 | ] | 71 | ] |
50 | }, | 72 | }, |
51 | - "license": "MIT" | 73 | + "repository": { |
74 | + "type": "git", | ||
75 | + "url": "git://github.com/nodejs/readable-stream.git" | ||
76 | + }, | ||
77 | + "scripts": { | ||
78 | + "ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js", | ||
79 | + "cover": "nyc npm test", | ||
80 | + "report": "nyc report --reporter=lcov", | ||
81 | + "test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js" | ||
82 | + }, | ||
83 | + "version": "2.3.7" | ||
52 | } | 84 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "safe-buffer", | 2 | + "_args": [ |
3 | - "description": "Safer Node.js Buffer API", | 3 | + [ |
4 | - "version": "5.1.2", | 4 | + "safe-buffer@5.1.2", |
5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" | ||
6 | + ] | ||
7 | + ], | ||
8 | + "_from": "safe-buffer@5.1.2", | ||
9 | + "_id": "safe-buffer@5.1.2", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", | ||
12 | + "_location": "/safe-buffer", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "safe-buffer@5.1.2", | ||
18 | + "name": "safe-buffer", | ||
19 | + "escapedName": "safe-buffer", | ||
20 | + "rawSpec": "5.1.2", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "5.1.2" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/content-disposition", | ||
26 | + "/express", | ||
27 | + "/mysql", | ||
28 | + "/readable-stream", | ||
29 | + "/string_decoder" | ||
30 | + ], | ||
31 | + "_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", | ||
32 | + "_spec": "5.1.2", | ||
33 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
5 | "author": { | 34 | "author": { |
6 | "name": "Feross Aboukhadijeh", | 35 | "name": "Feross Aboukhadijeh", |
7 | "email": "feross@feross.org", | 36 | "email": "feross@feross.org", |
... | @@ -10,6 +39,7 @@ | ... | @@ -10,6 +39,7 @@ |
10 | "bugs": { | 39 | "bugs": { |
11 | "url": "https://github.com/feross/safe-buffer/issues" | 40 | "url": "https://github.com/feross/safe-buffer/issues" |
12 | }, | 41 | }, |
42 | + "description": "Safer Node.js Buffer API", | ||
13 | "devDependencies": { | 43 | "devDependencies": { |
14 | "standard": "*", | 44 | "standard": "*", |
15 | "tape": "^4.0.0" | 45 | "tape": "^4.0.0" |
... | @@ -26,12 +56,14 @@ | ... | @@ -26,12 +56,14 @@ |
26 | ], | 56 | ], |
27 | "license": "MIT", | 57 | "license": "MIT", |
28 | "main": "index.js", | 58 | "main": "index.js", |
29 | - "types": "index.d.ts", | 59 | + "name": "safe-buffer", |
30 | "repository": { | 60 | "repository": { |
31 | "type": "git", | 61 | "type": "git", |
32 | "url": "git://github.com/feross/safe-buffer.git" | 62 | "url": "git://github.com/feross/safe-buffer.git" |
33 | }, | 63 | }, |
34 | "scripts": { | 64 | "scripts": { |
35 | "test": "standard && tape test/*.js" | 65 | "test": "standard && tape test/*.js" |
36 | - } | 66 | + }, |
67 | + "types": "index.d.ts", | ||
68 | + "version": "5.1.2" | ||
37 | } | 69 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "safer-buffer", | 2 | + "_from": "safer-buffer@>= 2.1.2 < 3", |
3 | - "version": "2.1.2", | 3 | + "_id": "safer-buffer@2.1.2", |
4 | - "description": "Modern Buffer API polyfill without footguns", | 4 | + "_inBundle": false, |
5 | - "main": "safer.js", | 5 | + "_integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", |
6 | - "scripts": { | 6 | + "_location": "/safer-buffer", |
7 | - "browserify-test": "browserify --external tape tests.js > browserify-tests.js && tape browserify-tests.js", | 7 | + "_phantomChildren": {}, |
8 | - "test": "standard && tape tests.js" | 8 | + "_requested": { |
9 | + "type": "range", | ||
10 | + "registry": true, | ||
11 | + "raw": "safer-buffer@>= 2.1.2 < 3", | ||
12 | + "name": "safer-buffer", | ||
13 | + "escapedName": "safer-buffer", | ||
14 | + "rawSpec": ">= 2.1.2 < 3", | ||
15 | + "saveSpec": null, | ||
16 | + "fetchSpec": ">= 2.1.2 < 3" | ||
9 | }, | 17 | }, |
18 | + "_requiredBy": [ | ||
19 | + "/iconv-lite" | ||
20 | + ], | ||
21 | + "_resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", | ||
22 | + "_shasum": "44fa161b0187b9549dd84bb91802f9bd8385cd6a", | ||
23 | + "_spec": "safer-buffer@>= 2.1.2 < 3", | ||
24 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory\\node_modules\\iconv-lite", | ||
10 | "author": { | 25 | "author": { |
11 | "name": "Nikita Skovoroda", | 26 | "name": "Nikita Skovoroda", |
12 | "email": "chalkerx@gmail.com", | 27 | "email": "chalkerx@gmail.com", |
13 | "url": "https://github.com/ChALkeR" | 28 | "url": "https://github.com/ChALkeR" |
14 | }, | 29 | }, |
15 | - "license": "MIT", | ||
16 | - "repository": { | ||
17 | - "type": "git", | ||
18 | - "url": "git+https://github.com/ChALkeR/safer-buffer.git" | ||
19 | - }, | ||
20 | "bugs": { | 30 | "bugs": { |
21 | "url": "https://github.com/ChALkeR/safer-buffer/issues" | 31 | "url": "https://github.com/ChALkeR/safer-buffer/issues" |
22 | }, | 32 | }, |
33 | + "bundleDependencies": false, | ||
34 | + "deprecated": false, | ||
35 | + "description": "Modern Buffer API polyfill without footguns", | ||
23 | "devDependencies": { | 36 | "devDependencies": { |
24 | "standard": "^11.0.1", | 37 | "standard": "^11.0.1", |
25 | "tape": "^4.9.0" | 38 | "tape": "^4.9.0" |
... | @@ -30,5 +43,18 @@ | ... | @@ -30,5 +43,18 @@ |
30 | "tests.js", | 43 | "tests.js", |
31 | "dangerous.js", | 44 | "dangerous.js", |
32 | "safer.js" | 45 | "safer.js" |
33 | - ] | 46 | + ], |
47 | + "homepage": "https://github.com/ChALkeR/safer-buffer#readme", | ||
48 | + "license": "MIT", | ||
49 | + "main": "safer.js", | ||
50 | + "name": "safer-buffer", | ||
51 | + "repository": { | ||
52 | + "type": "git", | ||
53 | + "url": "git+https://github.com/ChALkeR/safer-buffer.git" | ||
54 | + }, | ||
55 | + "scripts": { | ||
56 | + "browserify-test": "browserify --external tape tests.js > browserify-tests.js && tape browserify-tests.js", | ||
57 | + "test": "standard && tape tests.js" | ||
58 | + }, | ||
59 | + "version": "2.1.2" | ||
34 | } | 60 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "ms", | 2 | + "_args": [ |
3 | - "version": "2.1.1", | 3 | + [ |
4 | - "description": "Tiny millisecond conversion utility", | 4 | + "ms@2.1.1", |
5 | - "repository": "zeit/ms", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "main": "./index", | 6 | + ] |
7 | - "files": [ | ||
8 | - "index.js" | ||
9 | ], | 7 | ], |
10 | - "scripts": { | 8 | + "_from": "ms@2.1.1", |
11 | - "precommit": "lint-staged", | 9 | + "_id": "ms@2.1.1", |
12 | - "lint": "eslint lib/* bin/*", | 10 | + "_inBundle": false, |
13 | - "test": "mocha tests.js" | 11 | + "_integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", |
12 | + "_location": "/send/ms", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "ms@2.1.1", | ||
18 | + "name": "ms", | ||
19 | + "escapedName": "ms", | ||
20 | + "rawSpec": "2.1.1", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "2.1.1" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/send" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", | ||
28 | + "_spec": "2.1.1", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "bugs": { | ||
31 | + "url": "https://github.com/zeit/ms/issues" | ||
32 | + }, | ||
33 | + "description": "Tiny millisecond conversion utility", | ||
34 | + "devDependencies": { | ||
35 | + "eslint": "4.12.1", | ||
36 | + "expect.js": "0.3.1", | ||
37 | + "husky": "0.14.3", | ||
38 | + "lint-staged": "5.0.0", | ||
39 | + "mocha": "4.0.1" | ||
14 | }, | 40 | }, |
15 | "eslintConfig": { | 41 | "eslintConfig": { |
16 | "extends": "eslint:recommended", | 42 | "extends": "eslint:recommended", |
... | @@ -19,6 +45,11 @@ | ... | @@ -19,6 +45,11 @@ |
19 | "es6": true | 45 | "es6": true |
20 | } | 46 | } |
21 | }, | 47 | }, |
48 | + "files": [ | ||
49 | + "index.js" | ||
50 | + ], | ||
51 | + "homepage": "https://github.com/zeit/ms#readme", | ||
52 | + "license": "MIT", | ||
22 | "lint-staged": { | 53 | "lint-staged": { |
23 | "*.js": [ | 54 | "*.js": [ |
24 | "npm run lint", | 55 | "npm run lint", |
... | @@ -26,12 +57,16 @@ | ... | @@ -26,12 +57,16 @@ |
26 | "git add" | 57 | "git add" |
27 | ] | 58 | ] |
28 | }, | 59 | }, |
29 | - "license": "MIT", | 60 | + "main": "./index", |
30 | - "devDependencies": { | 61 | + "name": "ms", |
31 | - "eslint": "4.12.1", | 62 | + "repository": { |
32 | - "expect.js": "0.3.1", | 63 | + "type": "git", |
33 | - "husky": "0.14.3", | 64 | + "url": "git+https://github.com/zeit/ms.git" |
34 | - "lint-staged": "5.0.0", | 65 | + }, |
35 | - "mocha": "4.0.1" | 66 | + "scripts": { |
36 | - } | 67 | + "lint": "eslint lib/* bin/*", |
68 | + "precommit": "lint-staged", | ||
69 | + "test": "mocha tests.js" | ||
70 | + }, | ||
71 | + "version": "2.1.1" | ||
37 | } | 72 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "send", | 2 | + "_args": [ |
3 | - "description": "Better streaming static file server with Range and conditional-GET support", | 3 | + [ |
4 | - "version": "0.17.1", | 4 | + "send@0.17.1", |
5 | - "author": "TJ Holowaychuk <tj@vision-media.ca>", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "contributors": [ | 6 | + ] |
7 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | ||
8 | - "James Wyatt Cready <jcready@gmail.com>", | ||
9 | - "Jesús Leganés Combarro <piranna@gmail.com>" | ||
10 | ], | 7 | ], |
11 | - "license": "MIT", | 8 | + "_from": "send@0.17.1", |
12 | - "repository": "pillarjs/send", | 9 | + "_id": "send@0.17.1", |
13 | - "keywords": [ | 10 | + "_inBundle": false, |
14 | - "static", | 11 | + "_integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", |
15 | - "file", | 12 | + "_location": "/send", |
16 | - "server" | 13 | + "_phantomChildren": {}, |
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "send@0.17.1", | ||
18 | + "name": "send", | ||
19 | + "escapedName": "send", | ||
20 | + "rawSpec": "0.17.1", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "0.17.1" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express", | ||
26 | + "/serve-static" | ||
27 | + ], | ||
28 | + "_resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", | ||
29 | + "_spec": "0.17.1", | ||
30 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
31 | + "author": { | ||
32 | + "name": "TJ Holowaychuk", | ||
33 | + "email": "tj@vision-media.ca" | ||
34 | + }, | ||
35 | + "bugs": { | ||
36 | + "url": "https://github.com/pillarjs/send/issues" | ||
37 | + }, | ||
38 | + "contributors": [ | ||
39 | + { | ||
40 | + "name": "Douglas Christopher Wilson", | ||
41 | + "email": "doug@somethingdoug.com" | ||
42 | + }, | ||
43 | + { | ||
44 | + "name": "James Wyatt Cready", | ||
45 | + "email": "jcready@gmail.com" | ||
46 | + }, | ||
47 | + { | ||
48 | + "name": "Jesús Leganés Combarro", | ||
49 | + "email": "piranna@gmail.com" | ||
50 | + } | ||
17 | ], | 51 | ], |
18 | "dependencies": { | 52 | "dependencies": { |
19 | "debug": "2.6.9", | 53 | "debug": "2.6.9", |
... | @@ -30,6 +64,7 @@ | ... | @@ -30,6 +64,7 @@ |
30 | "range-parser": "~1.2.1", | 64 | "range-parser": "~1.2.1", |
31 | "statuses": "~1.5.0" | 65 | "statuses": "~1.5.0" |
32 | }, | 66 | }, |
67 | + "description": "Better streaming static file server with Range and conditional-GET support", | ||
33 | "devDependencies": { | 68 | "devDependencies": { |
34 | "after": "0.8.2", | 69 | "after": "0.8.2", |
35 | "eslint": "5.16.0", | 70 | "eslint": "5.16.0", |
... | @@ -43,19 +78,32 @@ | ... | @@ -43,19 +78,32 @@ |
43 | "mocha": "6.1.4", | 78 | "mocha": "6.1.4", |
44 | "supertest": "4.0.2" | 79 | "supertest": "4.0.2" |
45 | }, | 80 | }, |
81 | + "engines": { | ||
82 | + "node": ">= 0.8.0" | ||
83 | + }, | ||
46 | "files": [ | 84 | "files": [ |
47 | "HISTORY.md", | 85 | "HISTORY.md", |
48 | "LICENSE", | 86 | "LICENSE", |
49 | "README.md", | 87 | "README.md", |
50 | "index.js" | 88 | "index.js" |
51 | ], | 89 | ], |
52 | - "engines": { | 90 | + "homepage": "https://github.com/pillarjs/send#readme", |
53 | - "node": ">= 0.8.0" | 91 | + "keywords": [ |
92 | + "static", | ||
93 | + "file", | ||
94 | + "server" | ||
95 | + ], | ||
96 | + "license": "MIT", | ||
97 | + "name": "send", | ||
98 | + "repository": { | ||
99 | + "type": "git", | ||
100 | + "url": "git+https://github.com/pillarjs/send.git" | ||
54 | }, | 101 | }, |
55 | "scripts": { | 102 | "scripts": { |
56 | "lint": "eslint --plugin markdown --ext js,md .", | 103 | "lint": "eslint --plugin markdown --ext js,md .", |
57 | "test": "mocha --check-leaks --reporter spec --bail", | 104 | "test": "mocha --check-leaks --reporter spec --bail", |
58 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec", | 105 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec", |
59 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot" | 106 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot" |
60 | - } | 107 | + }, |
108 | + "version": "0.17.1" | ||
61 | } | 109 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "serve-static", | 2 | + "_args": [ |
3 | - "description": "Serve static files", | 3 | + [ |
4 | - "version": "1.14.1", | 4 | + "serve-static@1.14.1", |
5 | - "author": "Douglas Christopher Wilson <doug@somethingdoug.com>", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "license": "MIT", | 6 | + ] |
7 | - "repository": "expressjs/serve-static", | 7 | + ], |
8 | + "_from": "serve-static@1.14.1", | ||
9 | + "_id": "serve-static@1.14.1", | ||
10 | + "_inBundle": false, | ||
11 | + "_integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", | ||
12 | + "_location": "/serve-static", | ||
13 | + "_phantomChildren": {}, | ||
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "serve-static@1.14.1", | ||
18 | + "name": "serve-static", | ||
19 | + "escapedName": "serve-static", | ||
20 | + "rawSpec": "1.14.1", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.14.1" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express" | ||
26 | + ], | ||
27 | + "_resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", | ||
28 | + "_spec": "1.14.1", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "author": { | ||
31 | + "name": "Douglas Christopher Wilson", | ||
32 | + "email": "doug@somethingdoug.com" | ||
33 | + }, | ||
34 | + "bugs": { | ||
35 | + "url": "https://github.com/expressjs/serve-static/issues" | ||
36 | + }, | ||
8 | "dependencies": { | 37 | "dependencies": { |
9 | "encodeurl": "~1.0.2", | 38 | "encodeurl": "~1.0.2", |
10 | "escape-html": "~1.0.3", | 39 | "escape-html": "~1.0.3", |
11 | "parseurl": "~1.3.3", | 40 | "parseurl": "~1.3.3", |
12 | "send": "0.17.1" | 41 | "send": "0.17.1" |
13 | }, | 42 | }, |
43 | + "description": "Serve static files", | ||
14 | "devDependencies": { | 44 | "devDependencies": { |
15 | "eslint": "5.16.0", | 45 | "eslint": "5.16.0", |
16 | "eslint-config-standard": "12.0.0", | 46 | "eslint-config-standard": "12.0.0", |
... | @@ -24,13 +54,20 @@ | ... | @@ -24,13 +54,20 @@ |
24 | "safe-buffer": "5.1.2", | 54 | "safe-buffer": "5.1.2", |
25 | "supertest": "4.0.2" | 55 | "supertest": "4.0.2" |
26 | }, | 56 | }, |
57 | + "engines": { | ||
58 | + "node": ">= 0.8.0" | ||
59 | + }, | ||
27 | "files": [ | 60 | "files": [ |
28 | "LICENSE", | 61 | "LICENSE", |
29 | "HISTORY.md", | 62 | "HISTORY.md", |
30 | "index.js" | 63 | "index.js" |
31 | ], | 64 | ], |
32 | - "engines": { | 65 | + "homepage": "https://github.com/expressjs/serve-static#readme", |
33 | - "node": ">= 0.8.0" | 66 | + "license": "MIT", |
67 | + "name": "serve-static", | ||
68 | + "repository": { | ||
69 | + "type": "git", | ||
70 | + "url": "git+https://github.com/expressjs/serve-static.git" | ||
34 | }, | 71 | }, |
35 | "scripts": { | 72 | "scripts": { |
36 | "lint": "eslint --plugin markdown --ext js,md .", | 73 | "lint": "eslint --plugin markdown --ext js,md .", |
... | @@ -38,5 +75,6 @@ | ... | @@ -38,5 +75,6 @@ |
38 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", | 75 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", |
39 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", | 76 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", |
40 | "version": "node scripts/version-history.js && git add HISTORY.md" | 77 | "version": "node scripts/version-history.js && git add HISTORY.md" |
41 | - } | 78 | + }, |
79 | + "version": "1.14.1" | ||
42 | } | 80 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "setprototypeof", | 2 | + "_args": [ |
3 | - "version": "1.1.1", | 3 | + [ |
4 | - "description": "A small polyfill for Object.setprototypeof", | 4 | + "setprototypeof@1.1.1", |
5 | - "main": "index.js", | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "typings": "index.d.ts", | 6 | + ] |
7 | - "scripts": { | 7 | + ], |
8 | - "test": "standard && mocha", | 8 | + "_from": "setprototypeof@1.1.1", |
9 | - "testallversions": "npm run node010 && npm run node4 && npm run node6 && npm run node9 && npm run node11", | 9 | + "_id": "setprototypeof@1.1.1", |
10 | - "testversion": "docker run -it --rm -v $(PWD):/usr/src/app -w /usr/src/app node:${NODE_VER} npm install mocha@${MOCHA_VER:-latest} && npm t", | 10 | + "_inBundle": false, |
11 | - "node010": "NODE_VER=0.10 MOCHA_VER=3 npm run testversion", | 11 | + "_integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", |
12 | - "node4": "NODE_VER=4 npm run testversion", | 12 | + "_location": "/setprototypeof", |
13 | - "node6": "NODE_VER=6 npm run testversion", | 13 | + "_phantomChildren": {}, |
14 | - "node9": "NODE_VER=9 npm run testversion", | 14 | + "_requested": { |
15 | - "node11": "NODE_VER=11 npm run testversion" | 15 | + "type": "version", |
16 | + "registry": true, | ||
17 | + "raw": "setprototypeof@1.1.1", | ||
18 | + "name": "setprototypeof", | ||
19 | + "escapedName": "setprototypeof", | ||
20 | + "rawSpec": "1.1.1", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.1.1" | ||
16 | }, | 23 | }, |
17 | - "repository": { | 24 | + "_requiredBy": [ |
18 | - "type": "git", | 25 | + "/express", |
19 | - "url": "https://github.com/wesleytodd/setprototypeof.git" | 26 | + "/http-errors" |
27 | + ], | ||
28 | + "_resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", | ||
29 | + "_spec": "1.1.1", | ||
30 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
31 | + "author": { | ||
32 | + "name": "Wes Todd" | ||
20 | }, | 33 | }, |
34 | + "bugs": { | ||
35 | + "url": "https://github.com/wesleytodd/setprototypeof/issues" | ||
36 | + }, | ||
37 | + "description": "A small polyfill for Object.setprototypeof", | ||
38 | + "devDependencies": { | ||
39 | + "mocha": "^5.2.0", | ||
40 | + "standard": "^12.0.1" | ||
41 | + }, | ||
42 | + "homepage": "https://github.com/wesleytodd/setprototypeof", | ||
21 | "keywords": [ | 43 | "keywords": [ |
22 | "polyfill", | 44 | "polyfill", |
23 | "object", | 45 | "object", |
24 | "setprototypeof" | 46 | "setprototypeof" |
25 | ], | 47 | ], |
26 | - "author": "Wes Todd", | ||
27 | "license": "ISC", | 48 | "license": "ISC", |
28 | - "bugs": { | 49 | + "main": "index.js", |
29 | - "url": "https://github.com/wesleytodd/setprototypeof/issues" | 50 | + "name": "setprototypeof", |
51 | + "repository": { | ||
52 | + "type": "git", | ||
53 | + "url": "git+https://github.com/wesleytodd/setprototypeof.git" | ||
30 | }, | 54 | }, |
31 | - "homepage": "https://github.com/wesleytodd/setprototypeof", | 55 | + "scripts": { |
32 | - "devDependencies": { | 56 | + "node010": "NODE_VER=0.10 MOCHA_VER=3 npm run testversion", |
33 | - "mocha": "^5.2.0", | 57 | + "node11": "NODE_VER=11 npm run testversion", |
34 | - "standard": "^12.0.1" | 58 | + "node4": "NODE_VER=4 npm run testversion", |
35 | - } | 59 | + "node6": "NODE_VER=6 npm run testversion", |
60 | + "node9": "NODE_VER=9 npm run testversion", | ||
61 | + "test": "standard && mocha", | ||
62 | + "testallversions": "npm run node010 && npm run node4 && npm run node6 && npm run node9 && npm run node11", | ||
63 | + "testversion": "docker run -it --rm -v $(PWD):/usr/src/app -w /usr/src/app node:${NODE_VER} npm install mocha@${MOCHA_VER:-latest} && npm t" | ||
64 | + }, | ||
65 | + "typings": "index.d.ts", | ||
66 | + "version": "1.1.1" | ||
36 | } | 67 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "sqlstring", | 2 | + "_args": [ |
3 | - "description": "Simple SQL escape and format for MySQL", | 3 | + [ |
4 | - "version": "2.3.1", | 4 | + "sqlstring@2.3.1", |
5 | - "contributors": [ | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "Adri Van Houdt <adri.van.houdt@gmail.com>", | 6 | + ] |
7 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | ||
8 | - "fengmk2 <fengmk2@gmail.com> (http://fengmk2.github.com)", | ||
9 | - "Kevin Jose Martin <kevin@tiliq.com>", | ||
10 | - "Nathan Woltman <nwoltman@outlook.com>", | ||
11 | - "Sergej Sintschilin <seregpie@gmail.com>" | ||
12 | ], | 7 | ], |
13 | - "license": "MIT", | 8 | + "_from": "sqlstring@2.3.1", |
14 | - "keywords": [ | 9 | + "_id": "sqlstring@2.3.1", |
15 | - "sqlstring", | 10 | + "_inBundle": false, |
16 | - "sql", | 11 | + "_integrity": "sha1-R1OT/56RR5rqYtyvDKPRSYOn+0A=", |
17 | - "escape", | 12 | + "_location": "/sqlstring", |
18 | - "sql escape" | 13 | + "_phantomChildren": {}, |
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "sqlstring@2.3.1", | ||
18 | + "name": "sqlstring", | ||
19 | + "escapedName": "sqlstring", | ||
20 | + "rawSpec": "2.3.1", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "2.3.1" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/mysql" | ||
19 | ], | 26 | ], |
20 | - "repository": "mysqljs/sqlstring", | 27 | + "_resolved": "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.1.tgz", |
28 | + "_spec": "2.3.1", | ||
29 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", | ||
30 | + "bugs": { | ||
31 | + "url": "https://github.com/mysqljs/sqlstring/issues" | ||
32 | + }, | ||
33 | + "contributors": [ | ||
34 | + { | ||
35 | + "name": "Adri Van Houdt", | ||
36 | + "email": "adri.van.houdt@gmail.com" | ||
37 | + }, | ||
38 | + { | ||
39 | + "name": "Douglas Christopher Wilson", | ||
40 | + "email": "doug@somethingdoug.com" | ||
41 | + }, | ||
42 | + { | ||
43 | + "name": "fengmk2", | ||
44 | + "email": "fengmk2@gmail.com", | ||
45 | + "url": "http://fengmk2.github.com" | ||
46 | + }, | ||
47 | + { | ||
48 | + "name": "Kevin Jose Martin", | ||
49 | + "email": "kevin@tiliq.com" | ||
50 | + }, | ||
51 | + { | ||
52 | + "name": "Nathan Woltman", | ||
53 | + "email": "nwoltman@outlook.com" | ||
54 | + }, | ||
55 | + { | ||
56 | + "name": "Sergej Sintschilin", | ||
57 | + "email": "seregpie@gmail.com" | ||
58 | + } | ||
59 | + ], | ||
60 | + "description": "Simple SQL escape and format for MySQL", | ||
21 | "devDependencies": { | 61 | "devDependencies": { |
22 | "beautify-benchmark": "0.2.4", | 62 | "beautify-benchmark": "0.2.4", |
23 | "benchmark": "2.1.4", | 63 | "benchmark": "2.1.4", |
... | @@ -27,6 +67,9 @@ | ... | @@ -27,6 +67,9 @@ |
27 | "urun": "0.0.8", | 67 | "urun": "0.0.8", |
28 | "utest": "0.0.8" | 68 | "utest": "0.0.8" |
29 | }, | 69 | }, |
70 | + "engines": { | ||
71 | + "node": ">= 0.6" | ||
72 | + }, | ||
30 | "files": [ | 73 | "files": [ |
31 | "lib/", | 74 | "lib/", |
32 | "HISTORY.md", | 75 | "HISTORY.md", |
... | @@ -34,8 +77,18 @@ | ... | @@ -34,8 +77,18 @@ |
34 | "README.md", | 77 | "README.md", |
35 | "index.js" | 78 | "index.js" |
36 | ], | 79 | ], |
37 | - "engines": { | 80 | + "homepage": "https://github.com/mysqljs/sqlstring#readme", |
38 | - "node": ">= 0.6" | 81 | + "keywords": [ |
82 | + "sqlstring", | ||
83 | + "sql", | ||
84 | + "escape", | ||
85 | + "sql escape" | ||
86 | + ], | ||
87 | + "license": "MIT", | ||
88 | + "name": "sqlstring", | ||
89 | + "repository": { | ||
90 | + "type": "git", | ||
91 | + "url": "git+https://github.com/mysqljs/sqlstring.git" | ||
39 | }, | 92 | }, |
40 | "scripts": { | 93 | "scripts": { |
41 | "bench": "node benchmark/index.js", | 94 | "bench": "node benchmark/index.js", |
... | @@ -43,5 +96,6 @@ | ... | @@ -43,5 +96,6 @@ |
43 | "test": "node test/run.js", | 96 | "test": "node test/run.js", |
44 | "test-ci": "nyc --reporter=text npm test", | 97 | "test-ci": "nyc --reporter=text npm test", |
45 | "test-cov": "nyc --reporter=html --reporter=text npm test" | 98 | "test-cov": "nyc --reporter=html --reporter=text npm test" |
46 | - } | 99 | + }, |
100 | + "version": "2.3.1" | ||
47 | } | 101 | } | ... | ... |
1 | { | 1 | { |
2 | - "name": "statuses", | 2 | + "_args": [ |
3 | - "description": "HTTP status utility", | 3 | + [ |
4 | - "version": "1.5.0", | 4 | + "statuses@1.5.0", |
5 | - "contributors": [ | 5 | + "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory" |
6 | - "Douglas Christopher Wilson <doug@somethingdoug.com>", | 6 | + ] |
7 | - "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)" | ||
8 | ], | 7 | ], |
9 | - "repository": "jshttp/statuses", | 8 | + "_from": "statuses@1.5.0", |
10 | - "license": "MIT", | 9 | + "_id": "statuses@1.5.0", |
11 | - "keywords": [ | 10 | + "_inBundle": false, |
12 | - "http", | 11 | + "_integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", |
13 | - "status", | 12 | + "_location": "/statuses", |
14 | - "code" | 13 | + "_phantomChildren": {}, |
14 | + "_requested": { | ||
15 | + "type": "version", | ||
16 | + "registry": true, | ||
17 | + "raw": "statuses@1.5.0", | ||
18 | + "name": "statuses", | ||
19 | + "escapedName": "statuses", | ||
20 | + "rawSpec": "1.5.0", | ||
21 | + "saveSpec": null, | ||
22 | + "fetchSpec": "1.5.0" | ||
23 | + }, | ||
24 | + "_requiredBy": [ | ||
25 | + "/express", | ||
26 | + "/finalhandler", | ||
27 | + "/http-errors", | ||
28 | + "/send" | ||
15 | ], | 29 | ], |
16 | - "files": [ | 30 | + "_resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", |
17 | - "HISTORY.md", | 31 | + "_spec": "1.5.0", |
18 | - "index.js", | 32 | + "_where": "C:\\Users\\fheld\\Desktop\\khuhub\\mapmory\\Mapmory", |
19 | - "codes.json", | 33 | + "bugs": { |
20 | - "LICENSE" | 34 | + "url": "https://github.com/jshttp/statuses/issues" |
35 | + }, | ||
36 | + "contributors": [ | ||
37 | + { | ||
38 | + "name": "Douglas Christopher Wilson", | ||
39 | + "email": "doug@somethingdoug.com" | ||
40 | + }, | ||
41 | + { | ||
42 | + "name": "Jonathan Ong", | ||
43 | + "email": "me@jongleberry.com", | ||
44 | + "url": "http://jongleberry.com" | ||
45 | + } | ||
21 | ], | 46 | ], |
47 | + "description": "HTTP status utility", | ||
22 | "devDependencies": { | 48 | "devDependencies": { |
23 | "csv-parse": "1.2.4", | 49 | "csv-parse": "1.2.4", |
24 | "eslint": "4.19.1", | 50 | "eslint": "4.19.1", |
... | @@ -36,6 +62,24 @@ | ... | @@ -36,6 +62,24 @@ |
36 | "engines": { | 62 | "engines": { |
37 | "node": ">= 0.6" | 63 | "node": ">= 0.6" |
38 | }, | 64 | }, |
65 | + "files": [ | ||
66 | + "HISTORY.md", | ||
67 | + "index.js", | ||
68 | + "codes.json", | ||
69 | + "LICENSE" | ||
70 | + ], | ||
71 | + "homepage": "https://github.com/jshttp/statuses#readme", | ||
72 | + "keywords": [ | ||
73 | + "http", | ||
74 | + "status", | ||
75 | + "code" | ||
76 | + ], | ||
77 | + "license": "MIT", | ||
78 | + "name": "statuses", | ||
79 | + "repository": { | ||
80 | + "type": "git", | ||
81 | + "url": "git+https://github.com/jshttp/statuses.git" | ||
82 | + }, | ||
39 | "scripts": { | 83 | "scripts": { |
40 | "build": "node scripts/build.js", | 84 | "build": "node scripts/build.js", |
41 | "fetch": "node scripts/fetch-apache.js && node scripts/fetch-iana.js && node scripts/fetch-nginx.js && node scripts/fetch-node.js", | 85 | "fetch": "node scripts/fetch-apache.js && node scripts/fetch-iana.js && node scripts/fetch-nginx.js && node scripts/fetch-node.js", |
... | @@ -44,5 +88,6 @@ | ... | @@ -44,5 +88,6 @@ |
44 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", | 88 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", |
45 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", | 89 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", |
46 | "update": "npm run fetch && npm run build" | 90 | "update": "npm run fetch && npm run build" |
47 | - } | 91 | + }, |
92 | + "version": "1.5.0" | ||
48 | } | 93 | } | ... | ... |
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
-
Please register or login to post a comment