-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 966 Bytes
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 966 Bytes
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": "@izcream/gitignore",
"version": "0.1.1",
"description": "simple .gitignore generator",
"main": "index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/izcream/gitignore-cli.git"
},
"files": [
"index.js",
"dist"
],
"bin": {
"gitignore": "index.js",
"gi": "index.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "unbuild",
"lint": "tsc --noEmit",
"test": "vitest",
"test:cover": "vitest --coverage"
},
"keywords": [
"git",
"gitignore",
"cli"
],
"author": "izcream*",
"license": "MIT",
"dependencies": {
"kolorist": "^1.7.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^18.14.4",
"@types/prompts": "^2.4.2",
"@vitest/coverage-c8": "^0.29.2",
"typescript": "^5.0.2",
"unbuild": "^1.1.2",
"vitest": "^0.29.2"
},
"publishConfig": {
"access": "public"
}
}