-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
49 lines (49 loc) · 1.4 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
{
"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 . --fix",
"lint-check": "eslint .",
"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.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/glob": "^0.5.0",
"@actions/http-client": "^2.2.3"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^3.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.0",
"@jest/globals": "^29.7.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.19.0",
"eslint-plugin-github": "^5.1.7",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"jest": "^29.7.0",
"nock": "^13.5.5",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}