-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
153 lines (153 loc) · 4.7 KB
/
package.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "kindly-license",
"version": "1.4.12",
"description": "A human readable license for projects created by human-beings.",
"main": "lib/index.js",
"bin": {
"kindly-license": "./bin/kindly-license"
},
"contributors": [
"Diego Benjamín Aguilar Aguilar <[email protected]>"
],
"scripts": {
"install": "node build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IonicaBizau/kindly-license.git"
},
"keywords": [
"kindly",
"license",
"generator"
],
"author": "Ionică Bizău <[email protected]> (https://ionicabizau.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/IonicaBizau/kindly-license/issues"
},
"homepage": "https://github.com/IonicaBizau/kindly-license",
"dependencies": {
"barbe": "^2.0.0",
"clp": "^3.0.0",
"streamp": "^2.0.0"
},
"devDependencies": {},
"directories": {
"example": "example"
},
"blah": {
"title": "The KINDLY License",
"description": [
{
"h2": "Why yet another license?"
},
{
"p": "I'm not a supporter of closed source software. I do not promote it. This license contains simple and human readable terms. It lets the author to decide if he/she allows using their work in closed source projects or not. :four_leaf_clover:"
},
{
"h2": "The license content"
},
{
"code": {
"content": [
"The KINDLY License",
"Copyright (c) <year> <author>",
"",
"You have the permission to use this software, read its source code, modify and",
"redistribute it under the following terms:",
"",
" - if you want to use this software or include parts of its code in a",
" closed-source or commercial project you should kindly ask the",
" author (via a private message or email) and get a positive answer",
" - this license should be included in the modified versions of this software",
" - in case of redistributing modified copies, you are encouraged to clearly",
" indicate that the copies are based on this work",
" - if you think that your redistributed copy is awesome, you are encouraged to",
" show the author of this software what you did and how you helped the others",
"",
"You are free to install and use this software on as many machines as you want,",
"free of charge, making sure you met the terms above.",
"",
"You are encouraged to kindly support the software and its author by:",
"",
" - sharing his/her work",
" - reporting issues/bugs and asking for feature requests",
" - donating money or any other things that can help the author",
" - contribute on the software code by fixing bugs and adding features"
]
}
},
{
"p": "In the `i18n` directory you can find the license translated in other languages. If your language translation is missing, we would appreciate to add it. :sparkles:"
}
],
"installation": [
{
"h2": "Usage"
},
{
"h3": "Online"
},
{
"p": "You can use the online version to get a copy of the license:"
},
{
"code": {
"content": "http://ionicabizau.github.io/kindly-license/?author=Your%20Name&year=2014"
}
},
{
"p": "[Here is an example](http://ionicabizau.github.io/kindly-license/?author=Ionic%C4%83%20Biz%C4%83u&year=2014)."
},
{
"h3": "Command line"
},
{
"p": "You can use this as command line tool and generate KINDLY licenses providing the copyright data."
},
{
"code": {
"language": "sh",
"content": [
"$ npm install -g kindly-license",
"$ kindly-license --help"
]
}
}
],
"contributing": [
{
"h3": "Editing the license content"
},
{
"p": "If you found a way to improve the license content, there are two places where you have to change it:"
},
{
"ul": [
"in the `LICENSE.kindly` file",
"in `README.md` (*The license content*)"
]
},
{
"p": "After modifying `LICENSE.kindly` you can run `npm run install` to update the other files."
}
]
},
"files": [
"bin/",
"app/",
"lib/",
"dist/",
"src/",
"scripts/",
"resources/",
"menu/",
"cli.js",
"index.js",
"bloggify.js",
"bloggify.json",
"bloggify/"
]
}