-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
52 lines (52 loc) · 981 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
50
51
52
{
"name": "mklicense",
"version": "0.1.5",
"description": "CLI tool for building Licenses files. Easily.",
"license": "MIT",
"repository": "cezaraugusto/mklicense",
"author": {
"name": "Cezar Augusto",
"email": "[email protected]",
"url": "cezaraugusto.net"
},
"engines": {
"node": ">=4.0"
},
"bin": {
"mklicense": "./mklicense.js"
},
"scripts": {
"test": "standard mklicense.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"files": [
"mklicense.js"
],
"keywords": [
"cli",
"tool",
"license",
"licenses",
"public domain",
"nonlicense",
"unlicense",
"mit",
"apache",
"mpl",
"gpl",
"lgpl",
"agpl"
],
"dependencies": {
"cli-spinner": "^0.2.5",
"git-user-name": "^2.0.0",
"inquirer": "^6.3.1",
"jsdom": "^15.1.1",
"snyk": "^1.996.0"
},
"devDependencies": {
"standard": "^14.1.0"
},
"snyk": true
}