node-red-contrib-web-worldmap 2.31.3 → 2.32.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/CHANGELOG.md +6 -1
  2. package/README.md +7 -2
  3. package/node_modules/accepts/package.json +55 -15
  4. package/node_modules/body-parser/HISTORY.md +0 -6
  5. package/node_modules/body-parser/README.md +1 -1
  6. package/node_modules/body-parser/index.js +9 -8
  7. package/node_modules/body-parser/node_modules/bytes/package.json +62 -20
  8. package/node_modules/body-parser/package.json +57 -18
  9. package/node_modules/bufferjs/package.json +65 -17
  10. package/node_modules/bufferlist/package.json +51 -15
  11. package/node_modules/cgi/package.json +46 -10
  12. package/node_modules/compressible/package.json +58 -15
  13. package/node_modules/{bytes → compression/node_modules/bytes}/History.md +0 -0
  14. package/node_modules/{bytes → compression/node_modules/bytes}/LICENSE +0 -0
  15. package/node_modules/{bytes → compression/node_modules/bytes}/Readme.md +0 -0
  16. package/node_modules/{bytes → compression/node_modules/bytes}/index.js +0 -0
  17. package/node_modules/compression/node_modules/bytes/package.json +84 -0
  18. package/node_modules/express/History.md +0 -9
  19. package/node_modules/express/Readme.md +2 -2
  20. package/node_modules/express/lib/router/route.js +8 -8
  21. package/node_modules/express/package.json +88 -33
  22. package/node_modules/get-intrinsic/package.json +118 -89
  23. package/node_modules/header-stack/package.json +48 -14
  24. package/node_modules/mime-db/HISTORY.md +0 -8
  25. package/node_modules/mime-db/LICENSE +18 -19
  26. package/node_modules/mime-db/README.md +1 -1
  27. package/node_modules/mime-db/db.json +6 -54
  28. package/node_modules/mime-db/index.js +0 -1
  29. package/node_modules/mime-db/package.json +67 -24
  30. package/node_modules/mime-types/HISTORY.md +0 -9
  31. package/node_modules/mime-types/README.md +1 -1
  32. package/node_modules/mime-types/package.json +63 -19
  33. package/node_modules/ms/package.json +54 -19
  34. package/node_modules/negotiator/package.json +61 -19
  35. package/node_modules/qs/.editorconfig +0 -3
  36. package/node_modules/qs/.eslintrc +5 -5
  37. package/node_modules/qs/CHANGELOG.md +0 -158
  38. package/node_modules/qs/README.md +1 -3
  39. package/node_modules/qs/dist/qs.js +9 -19
  40. package/node_modules/qs/lib/stringify.js +3 -12
  41. package/node_modules/qs/package.json +98 -73
  42. package/node_modules/qs/test/parse.js +0 -14
  43. package/node_modules/qs/test/stringify.js +10 -54
  44. package/node_modules/raw-body/node_modules/bytes/package.json +62 -20
  45. package/node_modules/stream-stack/package.json +43 -11
  46. package/node_modules/vary/package.json +52 -13
  47. package/node_modules/websocket-driver/node_modules/http-parser-js/CHANGELOG.md +14 -0
  48. package/node_modules/{http-parser-js → websocket-driver/node_modules/http-parser-js}/LICENSE.md +0 -0
  49. package/node_modules/websocket-driver/node_modules/http-parser-js/README.md +31 -0
  50. package/node_modules/{http-parser-js → websocket-driver/node_modules/http-parser-js}/http-parser.js +7 -12
  51. package/node_modules/websocket-driver/node_modules/http-parser-js/package.json +75 -0
  52. package/package.json +1 -1
  53. package/worldmap/leaflet/leaflet-side-by-side.js +278 -275
  54. package/worldmap/worldmap.js +48 -40
  55. package/node_modules/bytes/package.json +0 -39
  56. package/node_modules/http-parser-js/README.md +0 -43
  57. package/node_modules/http-parser-js/http-parser.d.ts +0 -175
  58. package/node_modules/http-parser-js/package.json +0 -30
package/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  ### Change Log for Node-RED Worldmap
2
2
 
3
- - v2.33.3 - Undo previous fix as while more technically correct - doesn't look so good. Issue #217
3
+ - v2.32.2 - Fix map split in iframe position
4
+ - v2.32.1 - Let command.heatmap replace complete heatmap array.
5
+ - v2.32.0 - Change || to nullish operator ?? to fix numerous dodgy assignments. Issue #219
6
+ Delete marker now also removes from heatmap layer. Issue #218
7
+
8
+ - v2.31.3 - Undo previous fix as while more technically correct - doesn't look so good. Issue #217
4
9
  - v2.31.2 = Fix more antimeridian crossing wrinkles. Issue #216
5
10
  - v2.31.1 - Fix missing type property for drawings, and pass back feedback value. Add route distance. Issue #213, Issue #212, PR #215
6
11
  - v2.31.0 - Better handling of KML files. Issue #211
package/README.md CHANGED
@@ -11,7 +11,11 @@ map web page for plotting "things" on.
11
11
 
12
12
  ### Updates
13
13
 
14
- - v2.33.3 - Undo previous fix as while more technically correct - doesn't look so good. Issue #217
14
+ - v2.32.2 - Fix map split in iframe position
15
+ - v2.32.1 - Let command.map.heatmap replace complete heatmap array.
16
+ - v2.32.0 - Change || to nullish operator ?? to fix numerous dodgy assignments. Issue #219
17
+ Delete marker now also removes from heatmap layer. Issue #218
18
+ - v2.31.3 - Undo previous fix as while more technically correct - doesn't look so good. Issue #217
15
19
  - v2.31.2 = Fix more antimeridian crossing wrinkles. Issue #216
16
20
  - v2.31.1 - Fix missing type property for drawings, and pass back feedback value. Add route distance. Issue #213, Issue #212, PR #215
17
21
  - v2.31.0 - Better handling of KML files. Issue #211
@@ -408,7 +412,8 @@ Optional properties include
408
412
  - **wms** - true/false/grey, specifies if the data is provided by a Web Map Service (if grey sets layer to greyscale)
409
413
  - **bounds** - sets the bounds of an Overlay-Image. 2 Dimensional Array that defines the top-left and bottom-right Corners (lat/lon Points)
410
414
  - **delete** - name or array of names of base layers and/or overlays to delete and remove from layer menu.
411
- - **heatmap** - set heatmap options object see https://github.com/Leaflet/Leaflet.heat#reference
415
+ - **heatmap** - set heatmap latlngs array object see https://github.com/Leaflet/Leaflet.heat#reference
416
+ - **options** - if heatmap set, then use this to set heatmap options object see https://github.com/Leaflet/Leaflet.heat#reference
412
417
  - **clear** - layer name - to clear a complete layer and remove from layer menu - `{"command":{"clear":"myOldLayer"}}`
413
418
  - **panlock** - lock the map area to the current visible area. - `{"command":{"panlock":true}}`
414
419
  - **panit** - auto pan to the latest marker updated. - `{"command":{"panit":true}}`
@@ -1,17 +1,49 @@
1
1
  {
2
- "name": "accepts",
3
- "description": "Higher-level content negotiation",
4
- "version": "1.3.8",
2
+ "_from": "accepts@~1.3.5",
3
+ "_id": "accepts@1.3.8",
4
+ "_inBundle": false,
5
+ "_integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
6
+ "_location": "/node-red-contrib-web-worldmap/accepts",
7
+ "_phantomChildren": {},
8
+ "_requested": {
9
+ "type": "range",
10
+ "registry": true,
11
+ "raw": "accepts@~1.3.5",
12
+ "name": "accepts",
13
+ "escapedName": "accepts",
14
+ "rawSpec": "~1.3.5",
15
+ "saveSpec": null,
16
+ "fetchSpec": "~1.3.5"
17
+ },
18
+ "_requiredBy": [
19
+ "/node-red-contrib-web-worldmap/compression",
20
+ "/node-red-contrib-web-worldmap/express"
21
+ ],
22
+ "_resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
23
+ "_shasum": "0bf0be125b67014adcb0b0921e62db7bffe16b2e",
24
+ "_spec": "accepts@~1.3.5",
25
+ "_where": "/Users/conway/Projects/worldmap/node_modules/compression",
26
+ "bugs": {
27
+ "url": "https://github.com/jshttp/accepts/issues"
28
+ },
29
+ "bundleDependencies": false,
5
30
  "contributors": [
6
- "Douglas Christopher Wilson <doug@somethingdoug.com>",
7
- "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
31
+ {
32
+ "name": "Douglas Christopher Wilson",
33
+ "email": "doug@somethingdoug.com"
34
+ },
35
+ {
36
+ "name": "Jonathan Ong",
37
+ "email": "me@jongleberry.com",
38
+ "url": "http://jongleberry.com"
39
+ }
8
40
  ],
9
- "license": "MIT",
10
- "repository": "jshttp/accepts",
11
41
  "dependencies": {
12
42
  "mime-types": "~2.1.34",
13
43
  "negotiator": "0.6.3"
14
44
  },
45
+ "deprecated": false,
46
+ "description": "Higher-level content negotiation",
15
47
  "devDependencies": {
16
48
  "deep-equal": "1.0.1",
17
49
  "eslint": "7.32.0",
@@ -24,13 +56,26 @@
24
56
  "mocha": "9.2.0",
25
57
  "nyc": "15.1.0"
26
58
  },
59
+ "engines": {
60
+ "node": ">= 0.6"
61
+ },
27
62
  "files": [
28
63
  "LICENSE",
29
64
  "HISTORY.md",
30
65
  "index.js"
31
66
  ],
32
- "engines": {
33
- "node": ">= 0.6"
67
+ "homepage": "https://github.com/jshttp/accepts#readme",
68
+ "keywords": [
69
+ "content",
70
+ "negotiation",
71
+ "accept",
72
+ "accepts"
73
+ ],
74
+ "license": "MIT",
75
+ "name": "accepts",
76
+ "repository": {
77
+ "type": "git",
78
+ "url": "git+https://github.com/jshttp/accepts.git"
34
79
  },
35
80
  "scripts": {
36
81
  "lint": "eslint .",
@@ -38,10 +83,5 @@
38
83
  "test-ci": "nyc --reporter=lcov --reporter=text npm test",
39
84
  "test-cov": "nyc --reporter=html --reporter=text npm test"
40
85
  },
41
- "keywords": [
42
- "content",
43
- "negotiation",
44
- "accept",
45
- "accepts"
46
- ]
86
+ "version": "1.3.8"
47
87
  }
@@ -1,9 +1,3 @@
1
- 1.20.1 / 2022-10-06
2
- ===================
3
-
4
- * deps: qs@6.11.0
5
- * perf: remove unnecessary object clone
6
-
7
1
  1.20.0 / 2022-04-02
8
2
  ===================
9
3
 
@@ -346,7 +346,7 @@ call `req.setEncoding` when using this module. The `status` property is set to
346
346
 
347
347
  This error will occur when the request is no longer readable when this middleware
348
348
  attempts to read it. This typically means something other than a middleware from
349
- this module read the request body already and the middleware was also configured to
349
+ this module read the reqest body already and the middleware was also configured to
350
350
  read the same request. The `status` property is set to `500` and the `type`
351
351
  property is set to `'stream.not.readable'`.
352
352
 
@@ -91,15 +91,16 @@ Object.defineProperty(exports, 'urlencoded', {
91
91
  */
92
92
 
93
93
  function bodyParser (options) {
94
- // use default type for parsers
95
- var opts = Object.create(options || null, {
96
- type: {
97
- configurable: true,
98
- enumerable: true,
99
- value: undefined,
100
- writable: true
94
+ var opts = {}
95
+
96
+ // exclude type option
97
+ if (options) {
98
+ for (var prop in options) {
99
+ if (prop !== 'type') {
100
+ opts[prop] = options[prop]
101
+ }
101
102
  }
102
- })
103
+ }
103
104
 
104
105
  var _urlencoded = exports.urlencoded(opts)
105
106
  var _json = exports.json(opts)
@@ -1,42 +1,84 @@
1
1
  {
2
- "name": "bytes",
3
- "description": "Utility to parse a string bytes to bytes and vice-versa",
4
- "version": "3.1.2",
5
- "author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)",
6
- "contributors": [
7
- "Jed Watson <jed.watson@me.com>",
8
- "Théo FIDRY <theo.fidry@gmail.com>"
2
+ "_from": "bytes@3.1.2",
3
+ "_id": "bytes@3.1.2",
4
+ "_inBundle": false,
5
+ "_integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
6
+ "_location": "/node-red-contrib-web-worldmap/body-parser/bytes",
7
+ "_phantomChildren": {},
8
+ "_requested": {
9
+ "type": "version",
10
+ "registry": true,
11
+ "raw": "bytes@3.1.2",
12
+ "name": "bytes",
13
+ "escapedName": "bytes",
14
+ "rawSpec": "3.1.2",
15
+ "saveSpec": null,
16
+ "fetchSpec": "3.1.2"
17
+ },
18
+ "_requiredBy": [
19
+ "/node-red-contrib-web-worldmap/body-parser"
9
20
  ],
10
- "license": "MIT",
11
- "keywords": [
12
- "byte",
13
- "bytes",
14
- "utility",
15
- "parse",
16
- "parser",
17
- "convert",
18
- "converter"
21
+ "_resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
22
+ "_shasum": "8b0beeb98605adf1b128fa4386403c009e0221a5",
23
+ "_spec": "bytes@3.1.2",
24
+ "_where": "/Users/conway/Projects/worldmap/node_modules/body-parser",
25
+ "author": {
26
+ "name": "TJ Holowaychuk",
27
+ "email": "tj@vision-media.ca",
28
+ "url": "http://tjholowaychuk.com"
29
+ },
30
+ "bugs": {
31
+ "url": "https://github.com/visionmedia/bytes.js/issues"
32
+ },
33
+ "bundleDependencies": false,
34
+ "contributors": [
35
+ {
36
+ "name": "Jed Watson",
37
+ "email": "jed.watson@me.com"
38
+ },
39
+ {
40
+ "name": "Théo FIDRY",
41
+ "email": "theo.fidry@gmail.com"
42
+ }
19
43
  ],
20
- "repository": "visionmedia/bytes.js",
44
+ "deprecated": false,
45
+ "description": "Utility to parse a string bytes to bytes and vice-versa",
21
46
  "devDependencies": {
22
47
  "eslint": "7.32.0",
23
48
  "eslint-plugin-markdown": "2.2.1",
24
49
  "mocha": "9.2.0",
25
50
  "nyc": "15.1.0"
26
51
  },
52
+ "engines": {
53
+ "node": ">= 0.8"
54
+ },
27
55
  "files": [
28
56
  "History.md",
29
57
  "LICENSE",
30
58
  "Readme.md",
31
59
  "index.js"
32
60
  ],
33
- "engines": {
34
- "node": ">= 0.8"
61
+ "homepage": "https://github.com/visionmedia/bytes.js#readme",
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"
35
76
  },
36
77
  "scripts": {
37
78
  "lint": "eslint .",
38
79
  "test": "mocha --check-leaks --reporter spec",
39
80
  "test-ci": "nyc --reporter=lcov --reporter=text npm test",
40
81
  "test-cov": "nyc --reporter=html --reporter=text npm test"
41
- }
82
+ },
83
+ "version": "3.1.2"
42
84
  }
@@ -1,13 +1,42 @@
1
1
  {
2
- "name": "body-parser",
3
- "description": "Node.js body parsing middleware",
4
- "version": "1.20.1",
2
+ "_from": "body-parser@1.20.0",
3
+ "_id": "body-parser@1.20.0",
4
+ "_inBundle": false,
5
+ "_integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==",
6
+ "_location": "/body-parser",
7
+ "_phantomChildren": {},
8
+ "_requested": {
9
+ "type": "version",
10
+ "registry": true,
11
+ "raw": "body-parser@1.20.0",
12
+ "name": "body-parser",
13
+ "escapedName": "body-parser",
14
+ "rawSpec": "1.20.0",
15
+ "saveSpec": null,
16
+ "fetchSpec": "1.20.0"
17
+ },
18
+ "_requiredBy": [
19
+ "/express"
20
+ ],
21
+ "_resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz",
22
+ "_shasum": "3de69bd89011c11573d7bfee6a64f11b6bd27cc5",
23
+ "_spec": "body-parser@1.20.0",
24
+ "_where": "/Users/conway/Projects/worldmap/node_modules/express",
25
+ "bugs": {
26
+ "url": "https://github.com/expressjs/body-parser/issues"
27
+ },
28
+ "bundleDependencies": false,
5
29
  "contributors": [
6
- "Douglas Christopher Wilson <doug@somethingdoug.com>",
7
- "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
30
+ {
31
+ "name": "Douglas Christopher Wilson",
32
+ "email": "doug@somethingdoug.com"
33
+ },
34
+ {
35
+ "name": "Jonathan Ong",
36
+ "email": "me@jongleberry.com",
37
+ "url": "http://jongleberry.com"
38
+ }
8
39
  ],
9
- "license": "MIT",
10
- "repository": "expressjs/body-parser",
11
40
  "dependencies": {
12
41
  "bytes": "3.1.2",
13
42
  "content-type": "~1.0.4",
@@ -17,24 +46,30 @@
17
46
  "http-errors": "2.0.0",
18
47
  "iconv-lite": "0.4.24",
19
48
  "on-finished": "2.4.1",
20
- "qs": "6.11.0",
49
+ "qs": "6.10.3",
21
50
  "raw-body": "2.5.1",
22
51
  "type-is": "~1.6.18",
23
52
  "unpipe": "1.0.0"
24
53
  },
54
+ "deprecated": false,
55
+ "description": "Node.js body parsing middleware",
25
56
  "devDependencies": {
26
- "eslint": "8.24.0",
57
+ "eslint": "7.32.0",
27
58
  "eslint-config-standard": "14.1.1",
28
- "eslint-plugin-import": "2.26.0",
29
- "eslint-plugin-markdown": "3.0.0",
59
+ "eslint-plugin-import": "2.25.4",
60
+ "eslint-plugin-markdown": "2.2.1",
30
61
  "eslint-plugin-node": "11.1.0",
31
- "eslint-plugin-promise": "6.0.1",
62
+ "eslint-plugin-promise": "5.2.0",
32
63
  "eslint-plugin-standard": "4.1.0",
33
64
  "methods": "1.1.2",
34
- "mocha": "10.0.0",
65
+ "mocha": "9.2.2",
35
66
  "nyc": "15.1.0",
36
67
  "safe-buffer": "5.2.1",
37
- "supertest": "6.3.0"
68
+ "supertest": "6.2.2"
69
+ },
70
+ "engines": {
71
+ "node": ">= 0.8",
72
+ "npm": "1.2.8000 || >= 1.4.16"
38
73
  },
39
74
  "files": [
40
75
  "lib/",
@@ -43,14 +78,18 @@
43
78
  "SECURITY.md",
44
79
  "index.js"
45
80
  ],
46
- "engines": {
47
- "node": ">= 0.8",
48
- "npm": "1.2.8000 || >= 1.4.16"
81
+ "homepage": "https://github.com/expressjs/body-parser#readme",
82
+ "license": "MIT",
83
+ "name": "body-parser",
84
+ "repository": {
85
+ "type": "git",
86
+ "url": "git+https://github.com/expressjs/body-parser.git"
49
87
  },
50
88
  "scripts": {
51
89
  "lint": "eslint .",
52
90
  "test": "mocha --require test/support/env --reporter spec --check-leaks --bail test/",
53
91
  "test-ci": "nyc --reporter=lcov --reporter=text npm test",
54
92
  "test-cov": "nyc --reporter=html --reporter=text npm test"
55
- }
93
+ },
94
+ "version": "1.20.0"
56
95
  }
@@ -1,19 +1,67 @@
1
1
  {
2
- "name" : "bufferjs",
3
- "description" : "Pure JavaScript Buffer utils.",
4
- "url" : "http://github.com/coolaj86/node-bufferjs/",
5
- "repository" : "coolaj86/node-bufferjs",
6
- "keywords" : ["util", "buffer", "chunk", "indexOf"],
7
- "author" : "AJ ONeal <coolaj86@gmail.com>",
8
- "license" : "MIT",
9
- "contributors" : [
10
- "Nathan Rajlich <nathan@tootallnate.net>",
11
- "Justin Freitag @justinfreitag"
12
- ],
13
- "dependencies" : {},
14
- "version" : "3.0.1",
15
- "main" : "./index",
16
- "engines" : {
17
- "node" : ">=0.2.0"
18
- }
2
+ "_args": [
3
+ [
4
+ "bufferjs@3.0.1",
5
+ "/Users/conway/Projects/worldmap"
6
+ ]
7
+ ],
8
+ "_from": "bufferjs@3.0.1",
9
+ "_id": "bufferjs@3.0.1",
10
+ "_inBundle": false,
11
+ "_integrity": "sha1-BpLoKcsQoQVQ5kc5CwNesGw46O8=",
12
+ "_location": "/bufferjs",
13
+ "_phantomChildren": {},
14
+ "_requested": {
15
+ "type": "version",
16
+ "registry": true,
17
+ "raw": "bufferjs@3.0.1",
18
+ "name": "bufferjs",
19
+ "escapedName": "bufferjs",
20
+ "rawSpec": "3.0.1",
21
+ "saveSpec": null,
22
+ "fetchSpec": "3.0.1"
23
+ },
24
+ "_requiredBy": [
25
+ "/header-stack"
26
+ ],
27
+ "_resolved": "https://registry.npmjs.org/bufferjs/-/bufferjs-3.0.1.tgz",
28
+ "_spec": "3.0.1",
29
+ "_where": "/Users/conway/Projects/worldmap",
30
+ "author": {
31
+ "name": "AJ ONeal",
32
+ "email": "coolaj86@gmail.com"
33
+ },
34
+ "bugs": {
35
+ "url": "https://github.com/coolaj86/node-bufferjs/issues"
36
+ },
37
+ "contributors": [
38
+ {
39
+ "name": "Nathan Rajlich",
40
+ "email": "nathan@tootallnate.net"
41
+ },
42
+ {
43
+ "name": "Justin Freitag @justinfreitag"
44
+ }
45
+ ],
46
+ "dependencies": {},
47
+ "description": "Pure JavaScript Buffer utils.",
48
+ "engines": {
49
+ "node": ">=0.2.0"
50
+ },
51
+ "homepage": "https://github.com/coolaj86/node-bufferjs#readme",
52
+ "keywords": [
53
+ "util",
54
+ "buffer",
55
+ "chunk",
56
+ "indexOf"
57
+ ],
58
+ "license": "MIT",
59
+ "main": "./index",
60
+ "name": "bufferjs",
61
+ "repository": {
62
+ "type": "git",
63
+ "url": "git+https://github.com/coolaj86/node-bufferjs.git"
64
+ },
65
+ "url": "http://github.com/coolaj86/node-bufferjs/",
66
+ "version": "3.0.1"
19
67
  }
@@ -1,18 +1,54 @@
1
1
  {
2
+ "_args": [
3
+ [
4
+ "bufferlist@0.1.0",
5
+ "/Users/conway/Projects/worldmap"
6
+ ]
7
+ ],
8
+ "_from": "bufferlist@0.1.0",
9
+ "_id": "bufferlist@0.1.0",
10
+ "_inBundle": false,
11
+ "_integrity": "sha1-Qr7y2JVztA+hCGuzng9TEBcNHd0=",
12
+ "_location": "/bufferlist",
13
+ "_phantomChildren": {},
14
+ "_requested": {
15
+ "type": "version",
16
+ "registry": true,
17
+ "raw": "bufferlist@0.1.0",
2
18
  "name": "bufferlist",
3
- "version": "0.1.0",
4
- "description": "Create linked lists of Buffer objects",
5
- "directories": { "lib": "." },
6
- "main": "./bufferlist",
7
- "repository": {
8
- "type": "git",
9
- "url": "http://github.com/substack/node-bufferlist.git"
10
- },
11
- "devDependencies" : {
12
- "expresso": ">= 0.7.2"
13
- },
14
- "scripts": {
15
- "test": "expresso"
16
- },
17
- "engine": ["node >=0.1.97"]
19
+ "escapedName": "bufferlist",
20
+ "rawSpec": "0.1.0",
21
+ "saveSpec": null,
22
+ "fetchSpec": "0.1.0"
23
+ },
24
+ "_requiredBy": [
25
+ "/header-stack"
26
+ ],
27
+ "_resolved": "https://registry.npmjs.org/bufferlist/-/bufferlist-0.1.0.tgz",
28
+ "_spec": "0.1.0",
29
+ "_where": "/Users/conway/Projects/worldmap",
30
+ "bugs": {
31
+ "url": "https://github.com/substack/node-bufferlist/issues"
32
+ },
33
+ "description": "Create linked lists of Buffer objects",
34
+ "devDependencies": {
35
+ "expresso": ">= 0.7.2"
36
+ },
37
+ "directories": {
38
+ "lib": "."
39
+ },
40
+ "engine": [
41
+ "node >=0.1.97"
42
+ ],
43
+ "homepage": "https://github.com/substack/node-bufferlist#readme",
44
+ "main": "./bufferlist",
45
+ "name": "bufferlist",
46
+ "repository": {
47
+ "type": "git",
48
+ "url": "git+ssh://git@github.com/substack/node-bufferlist.git"
49
+ },
50
+ "scripts": {
51
+ "test": "expresso"
52
+ },
53
+ "version": "0.1.0"
18
54
  }
@@ -1,21 +1,57 @@
1
1
  {
2
- "name": "cgi",
3
- "description": "A stack/connect layer to invoke and serve CGI executables",
4
- "version": "0.3.1",
5
- "repository": {
6
- "type": "git",
7
- "url": "git://github.com/TooTallNate/node-cgi.git"
2
+ "_args": [
3
+ [
4
+ "cgi@0.3.1",
5
+ "/Users/conway/Projects/worldmap"
6
+ ]
7
+ ],
8
+ "_from": "cgi@0.3.1",
9
+ "_id": "cgi@0.3.1",
10
+ "_inBundle": false,
11
+ "_integrity": "sha1-h1HaZKHPGEnREFYxi3YNGs+6R9w=",
12
+ "_location": "/cgi",
13
+ "_phantomChildren": {},
14
+ "_requested": {
15
+ "type": "version",
16
+ "registry": true,
17
+ "raw": "cgi@0.3.1",
18
+ "name": "cgi",
19
+ "escapedName": "cgi",
20
+ "rawSpec": "0.3.1",
21
+ "saveSpec": null,
22
+ "fetchSpec": "0.3.1"
23
+ },
24
+ "_requiredBy": [
25
+ "/"
26
+ ],
27
+ "_resolved": "https://registry.npmjs.org/cgi/-/cgi-0.3.1.tgz",
28
+ "_spec": "0.3.1",
29
+ "_where": "/Users/conway/Projects/worldmap",
30
+ "author": {
31
+ "name": "Nathan Rajlich",
32
+ "email": "nathan@tootallnate.net",
33
+ "url": "http://tootallnate.net"
34
+ },
35
+ "bugs": {
36
+ "url": "https://github.com/TooTallNate/node-cgi/issues"
8
37
  },
9
- "author": "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)",
10
- "license": "MIT",
11
- "main": "./cgi.js",
12
38
  "dependencies": {
13
39
  "debug": "2",
14
40
  "extend": "~2.0.0",
15
41
  "header-stack": "~0.0.2",
16
42
  "stream-stack": "~1.1.1"
17
43
  },
44
+ "description": "A stack/connect layer to invoke and serve CGI executables",
18
45
  "devDependencies": {
19
46
  "connect": "~2.17.1"
20
- }
47
+ },
48
+ "homepage": "https://github.com/TooTallNate/node-cgi#readme",
49
+ "license": "MIT",
50
+ "main": "./cgi.js",
51
+ "name": "cgi",
52
+ "repository": {
53
+ "type": "git",
54
+ "url": "git://github.com/TooTallNate/node-cgi.git"
55
+ },
56
+ "version": "0.3.1"
21
57
  }