-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 1013 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.0",
"@actions/github": "^5.1.1",
"glob": "^8.0.3",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@vercel/ncc": "^0.36.0",
"standard": "^17.0.0"
}
}