-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "keza",
"version": "1.1.5",
"description": "Generate template files(Eslint config files, gitignore, readme..etc) from the command line",
"main": "index.js",
"bin": {
"keza": "./index.js"
},
"scripts": {
"lint": "eslint .",
"test": "exit 0",
"fix-lint": "eslint . --fix"
},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1"
},
"dependencies": {
"chalk": "^4.1.0",
"clear": "^0.1.0",
"cli-progress": "^3.8.2",
"commander": "^6.2.0",
"figlet": "^1.5.0",
"inquirer": "^7.3.3",
"ora": "^5.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knowbee/keza.git"
},
"keywords": [
"generate",
"generate templates",
"template",
"template files"
],
"author": "Igwaneza Bruce <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/knowbee/keza/issues"
},
"homepage": "https://github.com/knowbee/keza#readme"
}