-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 919 Bytes
/
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
{
"name": "@odit/license-exporter",
"version": "0.2.0",
"description": "A simple license crawler for crediting open source work",
"keywords": [
"license",
"ODIT.Services",
"cli"
],
"repository": {
"type": "git",
"url": "https://git.odit.services/odit/license-exporter"
},
"author": {
"name": "ODIT.Services",
"email": "info@odit.services",
"url": "https://odit.services"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"contributors": [
{
"name": "Philipp Dormann",
"email": "philipp@philippdormann.de",
"url": "https://philippdormann.de"
},
{
"name": "Nicolai Ort",
"email": "info@nicolai-ort.com",
"url": "https://nicolai-ort.com"
}
],
"main": "exporter.js",
"bin": {
"license-exporter": "bin/exporter.js"
},
"files": [
"bin",
"exporter.js",
"README.md",
"package.json",
"LICENSE"
],
"dependencies": {
"yargs": "17.7.1"
}
}