-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "@elbaph/generate-dependabot-config-from-package-json",
"version": "1.0.3",
"type": "module",
"description": "A CLI for generating dependabot config from package.json",
"author": "Stoyan Kolev",
"repository": {
"type": "git",
"url": "git+https://github.com/CloudNStoyan/generate-dependabot-config-from-package-json.git"
},
"files": [
"build",
"package.json",
"README.md",
"LICENSE"
],
"bin": {
"generate-dependabot-config-from-package-json": "./build/cli.js"
},
"exports": {
"./package.json": "./package.json"
},
"scripts": {
"build": "rimraf build && tsc --p tsconfig.build.json",
"format": "prettier --cache --write .",
"format-check": "prettier --cache --check .",
"test": "vitest run",
"typecheck": "tsc --p tsconfig.json --noEmit"
},
"dependencies": {
"commander": "^13.0.0",
"semver": "^7.6.3",
"tinyrainbow": "^1.2.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/semver": "^7.5.8",
"memfs": "^4.15.3",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"license": "MIT",
"keywords": [
"dependabot",
"package",
"package.json",
"package-json",
"generate"
]
}