-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.08 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
{
"name": "licensor-cli",
"version": "1.0.5",
"description": "Easily choose an Open Source license for your awesome project",
"main": "src/cli.js",
"author": {
"name": "Claudiu Ceia",
"email": "[email protected]",
"url": "https://github.com/ClaudiuCeia"
},
"type": "module",
"repository": {
"url": "https://github.com/ClaudiuCeia/licensor-cli",
"type": "git"
},
"files": [
"src"
],
"bugs": "https://github.com/ClaudiuCeia/licensor-cli/issues",
"bin": {
"licensor-cli": "src/cli.js"
},
"engines": {
"node": ">=8"
},
"keywords": [
"cli-app",
"cli",
"license"
],
"license": "MIT",
"dependencies": {
"inquirer": "9.1.4",
"snyk": "^1.1057.0",
"strip-indent": "4.0.0"
},
"devDependencies": {
"eslint": "8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "2.26.0"
},
"scripts": {
"start": "node ./src/cli.js",
"test": "yarn lint",
"lint": "eslint . --fix",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"snyk": true
}