-
Notifications
You must be signed in to change notification settings - Fork 4
/
defaultlicenses.json
121 lines (121 loc) · 5.61 KB
/
defaultlicenses.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[
{
"name": "license_agpl_3_0",
"description": "GNU Affero General Public License",
"text": [
"${headerbegin}",
"${headerprefix} GNU Affero General Public License",
"${headerprefix}",
"${headerprefix} Copyright (c) ${year} ${company}",
"${headerprefix}",
"${headerprefix} This program is free software: you can redistribute it and/or modify",
"${headerprefix} it under the terms of the GNU Affero General Public License as published",
"${headerprefix} by the Free Software Foundation, either version 3 of the License, or",
"${headerprefix} (at your option) any later version.",
"${headerprefix} This program is distributed in the hope that it will be useful,",
"${headerprefix} but WITHOUT ANY WARRANTY; without even the implied warranty of",
"${headerprefix} MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the",
"${headerprefix} GNU Affero General Public License for more details.",
"${headerprefix} ",
"${headerprefix} You should have received a copy of the GNU Affero General Public License",
"${headerprefix} along with this program. If not, see <http://www.gnu.org/licenses/>.",
"${headerend}"
]
},
{
"name": "license_apache_2_0",
"description": "Apache License, Version 2.0",
"text": [
"${headerbegin}",
"${headerprefix} Apache License, Version 2.0",
"${headerprefix}",
"${headerprefix} Copyright (c) ${year} ${company}",
"${headerprefix}",
"${headerprefix} Licensed under the Apache License, Version 2.0 (the \"License\");",
"${headerprefix} you may not use this file except in compliance with the License.",
"${headerprefix} You may obtain a copy of the License at:",
"${headerprefix} http://www.apache.org/licenses/LICENSE-2.0",
"${headerprefix} Unless required by applicable law or agreed to in writing, software",
"${headerprefix} distributed under the License is distributed on an \"AS IS\" BASIS,",
"${headerprefix} WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.",
"${headerprefix} See the License for the specific language governing permissions and",
"${headerprefix} limitations under the License.",
"${headerend}"
]
},
{
"name": "license_gpl_3_0",
"description": "GNU General Public License, Version 3.0",
"text": [
"${headerbegin}",
"${headerprefix} GNU General Public License, Version 3.0",
"${headerprefix}",
"${headerprefix} Copyright (c) ${year} ${company}",
"${headerprefix}",
"${headerprefix} This program is free software: you can redistribute it and/or modify",
"${headerprefix} it under the terms of the GNU General Public License as published by",
"${headerprefix} the Free Software Foundation, either version 3 of the License, or",
"${headerprefix} (at your option) any later version.",
"${headerprefix} This program is distributed in the hope that it will be useful,",
"${headerprefix} but WITHOUT ANY WARRANTY; without even the implied warranty of",
"${headerprefix} MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the",
"${headerprefix} GNU General Public License for more details.",
"${headerprefix} ",
"${headerprefix} You should have received a copy of the GNU General Public License",
"${headerprefix} along with this program. If not, see <http://www.gnu.org/licenses/>.",
"${headerend}"
]
},
{
"name": "license_mit",
"description": "MIT License",
"text": [
"${headerbegin}",
"${headerprefix} MIT License",
"${headerprefix}",
"${headerprefix} Copyright (c) ${year} ${company}",
"${headerprefix}",
"${headerprefix} Permission is hereby granted, free of charge, to any person obtaining a copy of",
"${headerprefix} this software and associated documentation files (the \"Software\"), to deal in",
"${headerprefix} the Software without restriction, including without limitation the rights to use,",
"${headerprefix} copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the",
"${headerprefix} Software, and to permit persons to whom the Software is furnished to do so,",
"${headerprefix} subject to the following conditions:",
"${headerprefix}",
"${headerprefix} The above copyright notice and this permission notice shall be included in all",
"${headerprefix} copies or substantial portions of the Software.",
"${headerprefix}",
"${headerprefix} THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR",
"${headerprefix} IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS",
"${headerprefix} FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR",
"${headerprefix} COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN",
"${headerprefix} AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH",
"${headerprefix} THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
"${headerend}"
]
},
{
"name": "license_mozillapl_2_0",
"description": "Mozilla Public License, Version 2.0",
"text": [
"${headerbegin}",
"${headerprefix} Mozilla Public License, Version 2.0",
"${headerprefix}",
"${headerprefix} Copyright (c) ${year} ${company}",
"${headerprefix}",
"${headerprefix} This Source Code Form is subject to the terms of the Mozilla Public",
"${headerprefix} License, v. 2.0. If a copy of the MPL was not distributed with this",
"${headerprefix} file, You can obtain one at http://mozilla.org/MPL/2.0/.",
"${headerend}"
]
},
{
"name": "license_none",
"description": "None (Copyright only)",
"text": [
"${headerbegin}",
"${headerprefix} Copyright (c) ${year} ${company}",
"${headerend}"
]
}
]