-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
47 lines (47 loc) · 1.35 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": "update-gradle-wrapper-action",
"version": "0.0.0",
"private": true,
"description": "Update Gradle Wrapper in your project",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib/ dist/",
"format": "prettier --write '{src,tests}/**/*.ts'",
"format-check": "prettier --check '{src,tests}/**/*.ts'",
"lint": "eslint . --ext ts --fix",
"lint-check": "eslint . --ext ts",
"build": "tsc",
"pack": "ncc build",
"test": "jest",
"all": "npm ls && npm run clean && npm run format && npm run lint && npm run build && npm run test && npm run pack"
},
"author": "Cristian Greco",
"license": "Apache 2.0",
"keywords": [
"gradle",
"actions"
],
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/glob": "^0.5.0",
"@actions/http-client": "^2.2.3"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-plugin-github": "^5.0.2",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.0",
"jest": "^29.7.0",
"nock": "^13.5.5",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
}
}