-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1020 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
34
35
{
"name": "perl-versions",
"version": "0.0.1",
"description": "List available Perl versions",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "ncc build index.js",
"pretty": "js-beautify --editorconfig -r index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/perl-actions/perl-versions.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/perl-actions/perl-versions/issues"
},
"homepage": "https://github.com/perl-actions/perl-versions#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"semver": "^7.5.4"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"js-beautify": "^1.15.1"
}
}