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