1 | # License for mock-fs
|
2 |
|
3 | The mock-fs module is distributed under the MIT license. Find the full source
|
4 | here: http://tschaub.mit-license.org/
|
5 |
|
6 | Copyright Tim Schaub.
|
7 |
|
8 | Permission is hereby granted, free of charge, to any person obtaining a copy of
|
9 | this software and associated documentation files (the “Software”), to deal in
|
10 | the Software without restriction, including without limitation the rights to
|
11 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
12 | the Software, and to permit persons to whom the Software is furnished to do so,
|
13 | subject to the following conditions:
|
14 |
|
15 | The above copyright notice and this permission notice shall be included in all
|
16 | copies or substantial portions of the Software.
|
17 |
|
18 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
20 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
21 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
22 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
23 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
24 |
|
25 |
|
26 | # Node's license
|
27 |
|
28 | This module includes parts of the Node library itself (specifically, the fs
|
29 | module is included from several different versions of Node). Find Node's
|
30 | license below:
|
31 |
|
32 | Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
33 | Permission is hereby granted, free of charge, to any person obtaining a copy
|
34 | of this software and associated documentation files (the "Software"), to
|
35 | deal in the Software without restriction, including without limitation the
|
36 | rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
37 | sell copies of the Software, and to permit persons to whom the Software is
|
38 | furnished to do so, subject to the following conditions:
|
39 |
|
40 | The above copyright notice and this permission notice shall be included in
|
41 | all copies or substantial portions of the Software.
|
42 |
|
43 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
44 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
45 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
46 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
47 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
48 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
49 | IN THE SOFTWARE.
|