generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.15 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": "setup-licensed",
"version": "1.3.0",
"description": "Setup github/licensed for use in GitHub Actions workflows.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint lib",
"test": "eslint lib && jest",
"package": "ncc build lib/index.js -o dist",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/setup-licensed.git"
},
"keywords": [
"GitHub",
"Licensed"
],
"author": "Jon Ruskin",
"license": "MIT",
"bugs": {
"url": "https://github.com/github/setup-licensed/issues"
},
"homepage": "https://github.com/github/setup-licensed#readme",
"engines": {
"node": ">=20.0.0 <21.0.0"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@octokit/plugin-throttling": "^9.3.1",
"@octokit/rest": "^21.0.2",
"semver": "^7.6.3"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@vercel/ncc": "^0.38.2",
"babel-jest": "^29.7.0",
"eslint": "^9.12.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"sinon": "^19.0.2"
}
}