forked from Makeshift/generate-dependabot-glob-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1014 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
{
"name": "generate-dependabot-glob-action",
"version": "1.0.0",
"description": "This action creates a `dependabot.yml` file from a user-provided template by replacing instances of `directory: **/x` with an array of objects matching that glob, with the keys copied.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "ncc build src/index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Makeshift/generate-dependabot-action.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Makeshift/generate-dependabot-action/issues"
},
"homepage": "https://github.com/Makeshift/generate-dependabot-action#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"glob": "10.3.12",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"standard": "^17.1.0"
}
}