forked from gradle-update/update-gradle-wrapper-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.26 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
{
"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.4.0",
"@actions/http-client": "^2.1.1"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^20.5.7",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.46.0",
"eslint-plugin-github": "^4.10.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^27.5.1",
"nock": "^13.3.3",
"prettier": "^3.0.1",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5"
}
}