-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.32 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
{
"name": "genlic",
"version": "0.2.1",
"license": "MIT",
"type": "module",
"main": "bin/cli.js",
"directories": {
"lib": "bin/"
},
"bin": "bin/cli.js",
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.2.0",
"inquirer": "^9.1.4",
"node-fetch": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/register": "^7.21.0",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.14.6",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"rimraf": "^4.3.1",
"typescript": "^4.9.5",
"xo": "^0.53.1"
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rimraf bin/ && tsc",
"test": "yarn build && xo",
"test:fix": "xo --fix",
"postversion": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ibodev1/genlic.git"
},
"homepage": "https://github.com/ibodev1/genlic#readme",
"bugs": {
"url": "https://github.com/ibodev1/genlic/issues"
},
"keywords": [
"license",
"mit",
"license generator",
"generate license"
],
"author": "İbrahim Ödev <[email protected]>",
"description": "Helper cli to generate LICENSE file to your local project."
}