-
Notifications
You must be signed in to change notification settings - Fork 24
/
.licenser.yml
54 lines (48 loc) · 1.11 KB
/
.licenser.yml
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
files:
"**/*.js":
header:
startBlock: |
/**
* @license
linePrefix: " * "
endBlock: " */"
"**/package.json":
json:
force:
author: "{AUTHOR_NAME} <{AUTHOR_EMAIL}> ({AUTHOR_WEB})"
license: "{SPDX}"
private: true
defaults:
homepage: "{HOMEPAGE}"
description: "{DESCRIPTION}"
sortPackage: true
siblingLicenseFile:
name: "LICENSE"
"**/README.md":
footer:
startBlock: "\n\n## License\n\n"
linePrefix: ""
endBlock: ""
license: "[{SPDX}](LICENSE)"
ignore:
- .git
- .vscode
- coverage
- dist
- flow-coverage
- flow-typed
- node_modules
license: |
Copyright (C) {YEARS} {AUTHOR_NAME} {AUTHOR_WEB} - All Rights Reserved
Unauthorized copying of this file, via any medium is strictly prohibited
Proprietary and confidential
substitutions:
YEARS:
start: 2018
end: CURRENT_YEAR
AUTHOR_NAME: "Pryv S.A."
AUTHOR_EMAIL: info@pryv.com
AUTHOR_WEB: https://pryv.com
DESCRIPTION: "This package is part of Pryv.io, a Pryv S.A. software"
HOMEPAGE: https://pryv.com
SPDX: UNLICENSED