src: move debug agent from deps/ to src/
[platform/upstream/nodejs.git] / LICENSE
1 Node's license follows:
2
3 ====
4
5 Copyright Joyent, Inc. and other Node contributors. All rights reserved.
6 Permission is hereby granted, free of charge, to any person obtaining a copy
7 of this software and associated documentation files (the "Software"), to
8 deal in the Software without restriction, including without limitation the
9 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 sell copies of the Software, and to permit persons to whom the Software is
11 furnished to do so, subject to the following conditions:
12
13 The above copyright notice and this permission notice shall be included in
14 all copies or substantial portions of the Software.
15
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 IN THE SOFTWARE.
23
24 ====
25
26 This license applies to all parts of Node that are not externally
27 maintained libraries. The externally maintained libraries used by Node are:
28
29 - V8, located at deps/v8. V8's license follows:
30   """
31     This license applies to all parts of V8 that are not externally
32     maintained libraries.  The externally maintained libraries used by V8
33     are:
34
35       - PCRE test suite, located in
36         test/mjsunit/third_party/regexp-pcre.js.  This is based on the
37         test suite from PCRE-7.3, which is copyrighted by the University
38         of Cambridge and Google, Inc.  The copyright notice and license
39         are embedded in regexp-pcre.js.
40
41       - Layout tests, located in test/mjsunit/third_party.  These are
42         based on layout tests from webkit.org which are copyrighted by
43         Apple Computer, Inc. and released under a 3-clause BSD license.
44
45       - Strongtalk assembler, the basis of the files assembler-arm-inl.h,
46         assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h,
47         assembler-ia32.cc, assembler-ia32.h, assembler-x64-inl.h,
48         assembler-x64.cc, assembler-x64.h, assembler-mips-inl.h,
49         assembler-mips.cc, assembler-mips.h, assembler.cc and assembler.h.
50         This code is copyrighted by Sun Microsystems Inc. and released
51         under a 3-clause BSD license.
52
53       - Valgrind client API header, located at third_party/valgrind/valgrind.h
54         This is release under the BSD license.
55
56     These libraries have their own licenses; we recommend you read them,
57     as their terms may differ from the terms below.
58
59     Copyright 2006-2012, the V8 project authors. All rights reserved.
60     Redistribution and use in source and binary forms, with or without
61     modification, are permitted provided that the following conditions are
62     met:
63
64         * Redistributions of source code must retain the above copyright
65           notice, this list of conditions and the following disclaimer.
66         * Redistributions in binary form must reproduce the above
67           copyright notice, this list of conditions and the following
68           disclaimer in the documentation and/or other materials provided
69           with the distribution.
70         * Neither the name of Google Inc. nor the names of its
71           contributors may be used to endorse or promote products derived
72           from this software without specific prior written permission.
73
74     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
75     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
76     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
77     A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
78     OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
79     SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
80     LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
81     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
82     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
83     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
84     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
85   """
86
87 - C-Ares, an asynchronous DNS client, located at deps/cares. C-Ares license
88   follows:
89   """
90     /* Copyright 1998 by the Massachusetts Institute of Technology.
91      *
92      * Permission to use, copy, modify, and distribute this
93      * software and its documentation for any purpose and without
94      * fee is hereby granted, provided that the above copyright
95      * notice appear in all copies and that both that copyright
96      * notice and this permission notice appear in supporting
97      * documentation, and that the name of M.I.T. not be used in
98      * advertising or publicity pertaining to distribution of the
99      * software without specific, written prior permission.
100      * M.I.T. makes no representations about the suitability of
101      * this software for any purpose.  It is provided "as is"
102      * without express or implied warranty.
103   """
104
105 - OpenSSL located at deps/openssl. OpenSSL is cryptographic software written
106   by Eric Young (eay@cryptsoft.com) to provide SSL/TLS encryption. OpenSSL's
107   license follows:
108   """
109     /* ====================================================================
110      * Copyright (c) 1998-2011 The OpenSSL Project.  All rights reserved.
111      *
112      * Redistribution and use in source and binary forms, with or without
113      * modification, are permitted provided that the following conditions
114      * are met:
115      *
116      * 1. Redistributions of source code must retain the above copyright
117      *    notice, this list of conditions and the following disclaimer.
118      *
119      * 2. Redistributions in binary form must reproduce the above copyright
120      *    notice, this list of conditions and the following disclaimer in
121      *    the documentation and/or other materials provided with the
122      *    distribution.
123      *
124      * 3. All advertising materials mentioning features or use of this
125      *    software must display the following acknowledgment:
126      *    "This product includes software developed by the OpenSSL Project
127      *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
128      *
129      * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
130      *    endorse or promote products derived from this software without
131      *    prior written permission. For written permission, please contact
132      *    openssl-core@openssl.org.
133      *
134      * 5. Products derived from this software may not be called "OpenSSL"
135      *    nor may "OpenSSL" appear in their names without prior written
136      *    permission of the OpenSSL Project.
137      *
138      * 6. Redistributions of any form whatsoever must retain the following
139      *    acknowledgment:
140      *    "This product includes software developed by the OpenSSL Project
141      *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
142      *
143      * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
144      * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
145      * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
146      * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
147      * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
148      * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
149      * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
150      * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
151      * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
152      * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
153      * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
154      * OF THE POSSIBILITY OF SUCH DAMAGE.
155      * ====================================================================
156      *
157      * This product includes cryptographic software written by Eric Young
158      * (eay@cryptsoft.com).  This product includes software written by Tim
159      * Hudson (tjh@cryptsoft.com).
160      *
161      */
162   """
163
164 - HTTP Parser, located at deps/http_parser. HTTP Parser's license follows:
165   """
166     http_parser.c is based on src/http/ngx_http_parse.c from NGINX copyright
167     Igor Sysoev.
168
169     Additional changes are licensed under the same terms as NGINX and
170     copyright Joyent, Inc. and other Node contributors. All rights reserved.
171
172     Permission is hereby granted, free of charge, to any person obtaining a copy
173     of this software and associated documentation files (the "Software"), to
174     deal in the Software without restriction, including without limitation the
175     rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
176     sell copies of the Software, and to permit persons to whom the Software is
177     furnished to do so, subject to the following conditions:
178
179     The above copyright notice and this permission notice shall be included in
180     all copies or substantial portions of the Software.
181
182     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
183     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
184     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
185     AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
186     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
187     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
188     IN THE SOFTWARE.
189   """
190
191 - Closure Linter is located at tools/closure_linter. Closure's license
192   follows:
193   """
194     # Copyright (c) 2007, Google Inc.
195     # All rights reserved.
196     #
197     # Redistribution and use in source and binary forms, with or without
198     # modification, are permitted provided that the following conditions are
199     # met:
200     #
201     #     * Redistributions of source code must retain the above copyright
202     # notice, this list of conditions and the following disclaimer.
203     #     * Redistributions in binary form must reproduce the above
204     # copyright notice, this list of conditions and the following disclaimer
205     # in the documentation and/or other materials provided with the
206     # distribution.
207     #     * Neither the name of Google Inc. nor the names of its
208     # contributors may be used to endorse or promote products derived from
209     # this software without specific prior written permission.
210     #
211     # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
212     # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
213     # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
214     # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
215     # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
216     # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
217     # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
218     # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
219     # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
220     # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
221     # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
222   """
223
224 - tools/cpplint.py is a C++ linter. Its license follows:
225   """
226     # Copyright (c) 2009 Google Inc. All rights reserved.
227     #
228     # Redistribution and use in source and binary forms, with or without
229     # modification, are permitted provided that the following conditions are
230     # met:
231     #
232     #    * Redistributions of source code must retain the above copyright
233     # notice, this list of conditions and the following disclaimer.
234     #    * Redistributions in binary form must reproduce the above
235     # copyright notice, this list of conditions and the following disclaimer
236     # in the documentation and/or other materials provided with the
237     # distribution.
238     #    * Neither the name of Google Inc. nor the names of its
239     # contributors may be used to endorse or promote products derived from
240     # this software without specific prior written permission.
241     #
242     # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
243     # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
244     # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
245     # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
246     # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
247     # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
248     # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
249     # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
250     # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
251     # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
252     # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
253   """
254
255 - lib/punycode.js is copyright 2011 Mathias Bynens <http://mathiasbynens.be/>
256   and released under the MIT license.
257   """
258     * Punycode.js <http://mths.be/punycode>
259     * Copyright 2011 Mathias Bynens <http://mathiasbynens.be/>
260     * Available under MIT license <http://mths.be/mit>
261   """
262
263 - tools/gyp. GYP is a meta-build system. GYP's license follows:
264   """
265     Copyright (c) 2009 Google Inc. All rights reserved.
266
267     Redistribution and use in source and binary forms, with or without
268     modification, are permitted provided that the following conditions are
269     met:
270
271        * Redistributions of source code must retain the above copyright
272     notice, this list of conditions and the following disclaimer.
273        * Redistributions in binary form must reproduce the above
274     copyright notice, this list of conditions and the following disclaimer
275     in the documentation and/or other materials provided with the
276     distribution.
277        * Neither the name of Google Inc. nor the names of its
278     contributors may be used to endorse or promote products derived from
279     this software without specific prior written permission.
280
281     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
282     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
283     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
284     A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
285     OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
286     SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
287     LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
288     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
289     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
290     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
291     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
292   """
293
294 - Zlib at deps/zlib. zlib's license follows:
295   """
296     /* zlib.h -- interface of the 'zlib' general purpose compression library
297       version 1.2.4, March 14th, 2010
298
299       Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler
300
301       This software is provided 'as-is', without any express or implied
302       warranty.  In no event will the authors be held liable for any damages
303       arising from the use of this software.
304
305       Permission is granted to anyone to use this software for any purpose,
306       including commercial applications, and to alter it and redistribute it
307       freely, subject to the following restrictions:
308
309       1. The origin of this software must not be misrepresented; you must not
310          claim that you wrote the original software. If you use this software
311          in a product, an acknowledgment in the product documentation would be
312          appreciated but is not required.
313       2. Altered source versions must be plainly marked as such, and must not be
314          misrepresented as being the original software.
315       3. This notice may not be removed or altered from any source distribution.
316
317       Jean-loup Gailly
318       Mark Adler
319
320     */
321   """
322
323 - npm is a package manager program located at deps/npm.
324   npm's license follows:
325   """
326     Copyright (c) Isaac Z. Schlueter
327     All rights reserved.
328
329     npm is released under the Artistic 2.0 License.
330     The text of the License follows:
331
332
333     --------
334
335
336     The Artistic License 2.0
337
338     Copyright (c) 2000-2006, The Perl Foundation.
339
340     Everyone is permitted to copy and distribute verbatim copies
341     of this license document, but changing it is not allowed.
342
343     Preamble
344
345     This license establishes the terms under which a given free software
346     Package may be copied, modified, distributed, and/or redistributed.
347     The intent is that the Copyright Holder maintains some artistic
348     control over the development of that Package while still keeping the
349     Package available as open source and free software.
350
351     You are always permitted to make arrangements wholly outside of this
352     license directly with the Copyright Holder of a given Package.  If the
353     terms of this license do not permit the full use that you propose to
354     make of the Package, you should contact the Copyright Holder and seek
355     a different licensing arrangement.
356
357     Definitions
358
359         "Copyright Holder" means the individual(s) or organization(s)
360         named in the copyright notice for the entire Package.
361
362         "Contributor" means any party that has contributed code or other
363         material to the Package, in accordance with the Copyright Holder's
364         procedures.
365
366         "You" and "your" means any person who would like to copy,
367         distribute, or modify the Package.
368
369         "Package" means the collection of files distributed by the
370         Copyright Holder, and derivatives of that collection and/or of
371         those files. A given Package may consist of either the Standard
372         Version, or a Modified Version.
373
374         "Distribute" means providing a copy of the Package or making it
375         accessible to anyone else, or in the case of a company or
376         organization, to others outside of your company or organization.
377
378         "Distributor Fee" means any fee that you charge for Distributing
379         this Package or providing support for this Package to another
380         party.  It does not mean licensing fees.
381
382         "Standard Version" refers to the Package if it has not been
383         modified, or has been modified only in ways explicitly requested
384         by the Copyright Holder.
385
386         "Modified Version" means the Package, if it has been changed, and
387         such changes were not explicitly requested by the Copyright
388         Holder.
389
390         "Original License" means this Artistic License as Distributed with
391         the Standard Version of the Package, in its current version or as
392         it may be modified by The Perl Foundation in the future.
393
394         "Source" form means the source code, documentation source, and
395         configuration files for the Package.
396
397         "Compiled" form means the compiled bytecode, object code, binary,
398         or any other form resulting from mechanical transformation or
399         translation of the Source form.
400
401
402     Permission for Use and Modification Without Distribution
403
404     (1)  You are permitted to use the Standard Version and create and use
405     Modified Versions for any purpose without restriction, provided that
406     you do not Distribute the Modified Version.
407
408
409     Permissions for Redistribution of the Standard Version
410
411     (2)  You may Distribute verbatim copies of the Source form of the
412     Standard Version of this Package in any medium without restriction,
413     either gratis or for a Distributor Fee, provided that you duplicate
414     all of the original copyright notices and associated disclaimers.  At
415     your discretion, such verbatim copies may or may not include a
416     Compiled form of the Package.
417
418     (3)  You may apply any bug fixes, portability changes, and other
419     modifications made available from the Copyright Holder.  The resulting
420     Package will still be considered the Standard Version, and as such
421     will be subject to the Original License.
422
423
424     Distribution of Modified Versions of the Package as Source
425
426     (4)  You may Distribute your Modified Version as Source (either gratis
427     or for a Distributor Fee, and with or without a Compiled form of the
428     Modified Version) provided that you clearly document how it differs
429     from the Standard Version, including, but not limited to, documenting
430     any non-standard features, executables, or modules, and provided that
431     you do at least ONE of the following:
432
433         (a)  make the Modified Version available to the Copyright Holder
434         of the Standard Version, under the Original License, so that the
435         Copyright Holder may include your modifications in the Standard
436         Version.
437
438         (b)  ensure that installation of your Modified Version does not
439         prevent the user installing or running the Standard Version. In
440         addition, the Modified Version must bear a name that is different
441         from the name of the Standard Version.
442
443         (c)  allow anyone who receives a copy of the Modified Version to
444         make the Source form of the Modified Version available to others
445         under
446
447             (i)  the Original License or
448
449             (ii)  a license that permits the licensee to freely copy,
450             modify and redistribute the Modified Version using the same
451             licensing terms that apply to the copy that the licensee
452             received, and requires that the Source form of the Modified
453             Version, and of any works derived from it, be made freely
454             available in that license fees are prohibited but Distributor
455             Fees are allowed.
456
457
458     Distribution of Compiled Forms of the Standard Version
459     or Modified Versions without the Source
460
461     (5)  You may Distribute Compiled forms of the Standard Version without
462     the Source, provided that you include complete instructions on how to
463     get the Source of the Standard Version.  Such instructions must be
464     valid at the time of your distribution.  If these instructions, at any
465     time while you are carrying out such distribution, become invalid, you
466     must provide new instructions on demand or cease further distribution.
467     If you provide valid instructions or cease distribution within thirty
468     days after you become aware that the instructions are invalid, then
469     you do not forfeit any of your rights under this license.
470
471     (6)  You may Distribute a Modified Version in Compiled form without
472     the Source, provided that you comply with Section 4 with respect to
473     the Source of the Modified Version.
474
475
476     Aggregating or Linking the Package
477
478     (7)  You may aggregate the Package (either the Standard Version or
479     Modified Version) with other packages and Distribute the resulting
480     aggregation provided that you do not charge a licensing fee for the
481     Package.  Distributor Fees are permitted, and licensing fees for other
482     components in the aggregation are permitted. The terms of this license
483     apply to the use and Distribution of the Standard or Modified Versions
484     as included in the aggregation.
485
486     (8) You are permitted to link Modified and Standard Versions with
487     other works, to embed the Package in a larger work of your own, or to
488     build stand-alone binary or bytecode versions of applications that
489     include the Package, and Distribute the result without restriction,
490     provided the result does not expose a direct interface to the Package.
491
492
493     Items That are Not Considered Part of a Modified Version
494
495     (9) Works (including, but not limited to, modules and scripts) that
496     merely extend or make use of the Package, do not, by themselves, cause
497     the Package to be a Modified Version.  In addition, such works are not
498     considered parts of the Package itself, and are not subject to the
499     terms of this license.
500
501
502     General Provisions
503
504     (10)  Any use, modification, and distribution of the Standard or
505     Modified Versions is governed by this Artistic License. By using,
506     modifying or distributing the Package, you accept this license. Do not
507     use, modify, or distribute the Package, if you do not accept this
508     license.
509
510     (11)  If your Modified Version has been derived from a Modified
511     Version made by someone other than you, you are nevertheless required
512     to ensure that your Modified Version complies with the requirements of
513     this license.
514
515     (12)  This license does not grant you the right to use any trademark,
516     service mark, tradename, or logo of the Copyright Holder.
517
518     (13)  This license includes the non-exclusive, worldwide,
519     free-of-charge patent license to make, have made, use, offer to sell,
520     sell, import and otherwise transfer the Package with respect to any
521     patent claims licensable by the Copyright Holder that are necessarily
522     infringed by the Package. If you institute patent litigation
523     (including a cross-claim or counterclaim) against any party alleging
524     that the Package constitutes direct or contributory patent
525     infringement, then this Artistic License to you shall terminate on the
526     date that such litigation is filed.
527
528     (14)  Disclaimer of Warranty:
529     THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS
530     IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
531     WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
532     NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL
533     LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL
534     BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
535     DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF
536     ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
537
538
539     --------
540
541
542     "Node.js" and "node" trademark Joyent, Inc. npm is not officially
543     part of the Node.js project, and is neither owned by nor
544     officially affiliated with Joyent, Inc.
545
546     Packages published in the npm registry (other than the Software and
547     its included dependencies) are not part of npm itself, are the sole
548     property of their respective maintainers, and are not covered by
549     this license.
550
551     "npm Logo" created by Mathias Pettersson and Brian Hammond,
552     used with permission.
553
554     "Gubblebum Blocky" font
555     Copyright (c) by Tjarda Koster, http://jelloween.deviantart.com
556     included for use in the npm website and documentation,
557     used with permission.
558
559     This program uses several Node modules contained in the node_modules/
560     subdirectory, according to the terms of their respective licenses.
561   """
562
563 - tools/doc/node_modules/marked. Marked is a Markdown parser. Marked's
564   license follows:
565   """
566     Copyright (c) 2011-2012, Christopher Jeffrey (https://github.com/chjj/)
567
568     Permission is hereby granted, free of charge, to any person obtaining a copy
569     of this software and associated documentation files (the "Software"), to deal
570     in the Software without restriction, including without limitation the rights
571     to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
572     copies of the Software, and to permit persons to whom the Software is
573     furnished to do so, subject to the following conditions:
574
575     The above copyright notice and this permission notice shall be included in
576     all copies or substantial portions of the Software.
577
578     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
579     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
580     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
581     AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
582     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
583     OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
584     THE SOFTWARE.
585   """
586
587 - test/gc/node_modules/weak. Node-weak is a node.js addon that provides garbage
588   collector notifications. Node-weak's license follows:
589   """
590     Copyright (c) 2011, Ben Noordhuis <info@bnoordhuis.nl>
591
592     Permission to use, copy, modify, and/or distribute this software for any
593     purpose with or without fee is hereby granted, provided that the above
594     copyright notice and this permission notice appear in all copies.
595
596     THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
597     WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
598     MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
599     ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
600     WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
601     ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
602     OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
603   """
604
605 - wrk is located at tools/wrk. wrk's license follows:
606   """
607
608                                      Apache License
609                                Version 2.0, January 2004
610                             http://www.apache.org/licenses/
611
612        TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
613
614        1. Definitions.
615
616           "License" shall mean the terms and conditions for use, reproduction,
617           and distribution as defined by Sections 1 through 9 of this document.
618
619           "Licensor" shall mean the copyright owner or entity authorized by
620           the copyright owner that is granting the License.
621
622           "Legal Entity" shall mean the union of the acting entity and all
623           other entities that control, are controlled by, or are under common
624           control with that entity. For the purposes of this definition,
625           "control" means (i) the power, direct or indirect, to cause the
626           direction or management of such entity, whether by contract or
627           otherwise, or (ii) ownership of fifty percent (50%) or more of the
628           outstanding shares, or (iii) beneficial ownership of such entity.
629
630           "You" (or "Your") shall mean an individual or Legal Entity
631           exercising permissions granted by this License.
632
633           "Source" form shall mean the preferred form for making modifications,
634           including but not limited to software source code, documentation
635           source, and configuration files.
636
637           "Object" form shall mean any form resulting from mechanical
638           transformation or translation of a Source form, including but
639           not limited to compiled object code, generated documentation,
640           and conversions to other media types.
641
642           "Work" shall mean the work of authorship, whether in Source or
643           Object form, made available under the License, as indicated by a
644           copyright notice that is included in or attached to the work
645           (an example is provided in the Appendix below).
646
647           "Derivative Works" shall mean any work, whether in Source or Object
648           form, that is based on (or derived from) the Work and for which the
649           editorial revisions, annotations, elaborations, or other modifications
650           represent, as a whole, an original work of authorship. For the purposes
651           of this License, Derivative Works shall not include works that remain
652           separable from, or merely link (or bind by name) to the interfaces of,
653           the Work and Derivative Works thereof.
654
655           "Contribution" shall mean any work of authorship, including
656           the original version of the Work and any modifications or additions
657           to that Work or Derivative Works thereof, that is intentionally
658           submitted to Licensor for inclusion in the Work by the copyright owner
659           or by an individual or Legal Entity authorized to submit on behalf of
660           the copyright owner. For the purposes of this definition, "submitted"
661           means any form of electronic, verbal, or written communication sent
662           to the Licensor or its representatives, including but not limited to
663           communication on electronic mailing lists, source code control systems,
664           and issue tracking systems that are managed by, or on behalf of, the
665           Licensor for the purpose of discussing and improving the Work, but
666           excluding communication that is conspicuously marked or otherwise
667           designated in writing by the copyright owner as "Not a Contribution."
668
669           "Contributor" shall mean Licensor and any individual or Legal Entity
670           on behalf of whom a Contribution has been received by Licensor and
671           subsequently incorporated within the Work.
672
673        2. Grant of Copyright License. Subject to the terms and conditions of
674           this License, each Contributor hereby grants to You a perpetual,
675           worldwide, non-exclusive, no-charge, royalty-free, irrevocable
676           copyright license to reproduce, prepare Derivative Works of,
677           publicly display, publicly perform, sublicense, and distribute the
678           Work and such Derivative Works in Source or Object form.
679
680        3. Grant of Patent License. Subject to the terms and conditions of
681           this License, each Contributor hereby grants to You a perpetual,
682           worldwide, non-exclusive, no-charge, royalty-free, irrevocable
683           (except as stated in this section) patent license to make, have made,
684           use, offer to sell, sell, import, and otherwise transfer the Work,
685           where such license applies only to those patent claims licensable
686           by such Contributor that are necessarily infringed by their
687           Contribution(s) alone or by combination of their Contribution(s)
688           with the Work to which such Contribution(s) was submitted. If You
689           institute patent litigation against any entity (including a
690           cross-claim or counterclaim in a lawsuit) alleging that the Work
691           or a Contribution incorporated within the Work constitutes direct
692           or contributory patent infringement, then any patent licenses
693           granted to You under this License for that Work shall terminate
694           as of the date such litigation is filed.
695
696        4. Redistribution. You may reproduce and distribute copies of the
697           Work or Derivative Works thereof in any medium, with or without
698           modifications, and in Source or Object form, provided that You
699           meet the following conditions:
700
701           (a) You must give any other recipients of the Work or
702               Derivative Works a copy of this License; and
703
704           (b) You must cause any modified files to carry prominent notices
705               stating that You changed the files; and
706
707           (c) You must retain, in the Source form of any Derivative Works
708               that You distribute, all copyright, patent, trademark, and
709               attribution notices from the Source form of the Work,
710               excluding those notices that do not pertain to any part of
711               the Derivative Works; and
712
713           (d) If the Work includes a "NOTICE" text file as part of its
714               distribution, then any Derivative Works that You distribute must
715               include a readable copy of the attribution notices contained
716               within such NOTICE file, excluding those notices that do not
717               pertain to any part of the Derivative Works, in at least one
718               of the following places: within a NOTICE text file distributed
719               as part of the Derivative Works; within the Source form or
720               documentation, if provided along with the Derivative Works; or,
721               within a display generated by the Derivative Works, if and
722               wherever such third-party notices normally appear. The contents
723               of the NOTICE file are for informational purposes only and
724               do not modify the License. You may add Your own attribution
725               notices within Derivative Works that You distribute, alongside
726               or as an addendum to the NOTICE text from the Work, provided
727               that such additional attribution notices cannot be construed
728               as modifying the License.
729
730           You may add Your own copyright statement to Your modifications and
731           may provide additional or different license terms and conditions
732           for use, reproduction, or distribution of Your modifications, or
733           for any such Derivative Works as a whole, provided Your use,
734           reproduction, and distribution of the Work otherwise complies with
735           the conditions stated in this License.
736
737        5. Submission of Contributions. Unless You explicitly state otherwise,
738           any Contribution intentionally submitted for inclusion in the Work
739           by You to the Licensor shall be under the terms and conditions of
740           this License, without any additional terms or conditions.
741           Notwithstanding the above, nothing herein shall supersede or modify
742           the terms of any separate license agreement you may have executed
743           with Licensor regarding such Contributions.
744
745        6. Trademarks. This License does not grant permission to use the trade
746           names, trademarks, service marks, or product names of the Licensor,
747           except as required for reasonable and customary use in describing the
748           origin of the Work and reproducing the content of the NOTICE file.
749
750        7. Disclaimer of Warranty. Unless required by applicable law or
751           agreed to in writing, Licensor provides the Work (and each
752           Contributor provides its Contributions) on an "AS IS" BASIS,
753           WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
754           implied, including, without limitation, any warranties or conditions
755           of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
756           PARTICULAR PURPOSE. You are solely responsible for determining the
757           appropriateness of using or redistributing the Work and assume any
758           risks associated with Your exercise of permissions under this License.
759
760        8. Limitation of Liability. In no event and under no legal theory,
761           whether in tort (including negligence), contract, or otherwise,
762           unless required by applicable law (such as deliberate and grossly
763           negligent acts) or agreed to in writing, shall any Contributor be
764           liable to You for damages, including any direct, indirect, special,
765           incidental, or consequential damages of any character arising as a
766           result of this License or out of the use or inability to use the
767           Work (including but not limited to damages for loss of goodwill,
768           work stoppage, computer failure or malfunction, or any and all
769           other commercial damages or losses), even if such Contributor
770           has been advised of the possibility of such damages.
771
772        9. Accepting Warranty or Additional Liability. While redistributing
773           the Work or Derivative Works thereof, You may choose to offer,
774           and charge a fee for, acceptance of support, warranty, indemnity,
775           or other liability obligations and/or rights consistent with this
776           License. However, in accepting such obligations, You may act only
777           on Your own behalf and on Your sole responsibility, not on behalf
778           of any other Contributor, and only if You agree to indemnify,
779           defend, and hold each Contributor harmless for any liability
780           incurred by, or claims asserted against, such Contributor by reason
781           of your accepting any such warranty or additional liability.
782
783        END OF TERMS AND CONDITIONS
784   """