-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 875 Bytes
/
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
{
"name": "ignore-check",
"version": "1.1.7",
"description": "A simple CLI utility to make sure certain patterns are available in a project's .gitignore",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"type": "module",
"bin": {
"ignore-check": "bin.js"
},
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smashah/ignorecheck.git"
},
"author": "SMASHAH <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/smashah/ignorecheck/issues"
},
"homepage": "https://github.com/smashah/ignorecheck#readme",
"devDependencies": {
"@sindresorhus/tsconfig": "^1.0.2"
},
"dependencies": {
"find-up": "^5.0.0",
"meow": "^10.0.0"
},
"resolutions": {
"graceful-fs": "4.2.6"
}
}