-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.44 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
{
"name": "cpan-upload",
"version": "1.0.0",
"description": "Upload file to CPAN",
"author": "Graham Knop <[email protected]>",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings=ExperimentalWarning' jest",
"package": "tsc && ncc build --license licenses.txt"
},
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/perl-actions/cpan-upload.git"
},
"homepage": "https://github.com/perl-actions/cpan-upload#readme",
"bugs": {
"url": "https://github.com/perl-actions/cpan-upload/issues"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/http-client": "^2.2.1",
"form-data": "^4.0.0",
"fs": "^0.0.2",
"os": "^0.1.2",
"path": "^0.12.7",
"util": "^0.12.5"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}