-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.57 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@iyowei/cli-fast-gitignore",
"description": "命令行工具,用来生成、更新 .gitignore 文件。 ’github/gitignore‘ 模板库已内嵌。",
"version": "1.0.5",
"bin": {
"fast-gitignore": "cli.js",
"fgi": "cli.js"
},
"type": "module",
"scripts": {
"format": "npx prettier '**/*.{js,mjs,json,md}' --write --loglevel error",
"lint": "npx eslint '**/*.js'"
},
"engines": {
"node": ">=12.20.0"
},
"files": [
"cli.js",
"templates/**"
],
"dependencies": {
"@iyowei/callsite-home": "^1.0.1",
"@iyowei/fast-gitignore": "^1.0.5",
"chalk": "^5.1.2",
"cosmiconfig": "^8.0.0",
"load-json-file": "^7.0.1",
"meow": "^11.0.0",
"redent": "^4.0.0",
"shelljs": "^0.8.5",
"terminal-link": "^3.0.0",
"update-notifier": "^6.0.2",
"write-json-file": "^5.0.0"
},
"devDependencies": {
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.8.1"
},
"keywords": [
"git",
"gitignore",
"初始化",
"init",
"脚手架",
"scaffold",
"生成器",
"generator",
"工具",
"tool",
"cli",
"iyowei"
],
"repository": {
"url": "git+https://github.com/iyowei/cli-fast-gitignore.git",
"type": "git"
},
"homepage": "https://github.com/iyowei/cli-fast-gitignore#readme",
"bugs": {
"url": "https://github.com/iyowei/cli-fast-gitignore/issues"
},
"publishConfig": {
"access": "public"
},
"private": false,
"license": "MIT"
}