-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "is-git-repository",
"version": "3.0.0",
"description": "A tool to check if a specific path is a git repository",
"type": "module",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"scripts": {
"test": "vitest run . --coverage --coverage.reporter lcov",
"lint": "eslint index.js index.spec.js",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JPeer264/node-is-git-repository.git"
},
"keywords": [
"is",
"git",
"repository",
"repo",
"is-git",
"exists"
],
"author": "Jan Peer Stöcklmair",
"license": "MIT",
"bugs": {
"url": "https://github.com/JPeer264/node-is-git-repository/issues"
},
"homepage": "https://github.com/JPeer264/node-is-git-repository#readme",
"dependencies": {
"execa": "^9.5.2"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@vitest/coverage-v8": "^2.1.8",
"coveralls": "^3.1.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"prettier": "^3.4.2",
"vitest": "^2.1.8"
}
}