-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 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
{
"name": "@iyowei/fast-gitignore",
"description": "从自定义模板库中获取 .gitignore 模板。",
"type": "module",
"main": "index.js",
"exports": "./index.js",
"files": [
"index.js"
],
"engines": {
"node": ">=12.20.0"
},
"scripts": {
"test": "npx mocha '**/*.+(spec|test).js'",
"format": "npx prettier '**/*.{js,mjs,json,md}' --write --loglevel error",
"lint": "npx eslint '**/*.js'"
},
"dependencies": {
"arrify": "^3.0.0",
"fast-glob": "^3.2.7",
"p-map": "^5.3.0"
},
"version": "1.0.5",
"publishConfig": {
"access": "public"
},
"keywords": [
"git",
"gitignore",
"init",
"generator",
"iyowei"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iyowei/fast-gitignore.git"
},
"bugs": {
"url": "https://github.com/iyowei/fast-gitignore/issues"
},
"homepage": "https://github.com/iyowei/fast-gitignore#readme",
"license": "MIT",
"devDependencies": {
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"mocha": "^9.1.3",
"prettier": "^2.5.1"
}
}