-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.14 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.14 KB
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": "gi-all",
"version": "1.2.0",
"description": "The only modular, category-based .gitignore generator you'll ever need.",
"homepage": "https://qafaraz.github.io/gi-all",
"repository": {
"type": "git",
"url": "git+https://github.com/qafaraz/gi-all.git"
},
"bugs": {
"url": "https://github.com/qafaraz/gi-all/issues"
},
"author": {
"name": "Qafar",
"url": "https://github.com/qafaraz"
},
"license": "MIT",
"bin": {
"gi-all": "bin/cli.js"
},
"main": "src/cli.js",
"files": [
"bin/",
"src/",
"templates/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node src/cli.js",
"dev": "node src/cli.js",
"test": "node --test",
"lint": "node -e \"console.log('Add your linter of choice here')\""
},
"keywords": [
"gitignore",
"git",
"ignore",
"template",
"templates",
"modular",
"category-based",
"cli",
"gitignore-template",
"gitignore-generator",
"developer-tools",
"gi-all"
],
"engines": {
"node": ">=16.0.0"
},
"preferGlobal": false,
"dependencies": {
"chalk": "^4.1.2",
"inquirer": "^9.2.11"
}
}