1
0
Files
setup-android/package.json
T

49 lines
1.3 KiB
JSON
Raw Normal View History

2020-01-03 11:37:01 +01:00
{
2020-07-14 17:41:00 +02:00
"name": "setup-android",
2020-01-03 11:37:01 +01:00
"version": "1.0.0",
2020-07-14 17:41:00 +02:00
"private": true,
"description": "setup android action",
"main": "lib/main.js",
2020-01-03 11:37:01 +01:00
"scripts": {
2026-03-25 00:48:38 +02:00
"build": "tsc && esbuild lib/main.js --bundle --platform=node --target=node24 --format=cjs --outfile=dist/index.js",
2020-07-14 17:41:00 +02:00
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/*.ts",
2020-07-14 17:41:00 +02:00
"test": "jest",
2020-07-25 18:07:39 +02:00
"all": "npm run format && npm run lint && npm run build && npm test"
2020-01-03 11:37:01 +01:00
},
2020-07-14 17:41:00 +02:00
"repository": {
"type": "git",
"url": "git+https://github.com/daveol/setup-android.git"
},
"keywords": [
"actions",
"node",
"setup",
"android"
],
"author": "daveol",
"license": "ISC",
"dependencies": {
2026-03-25 00:48:38 +02:00
"@actions/core": "^3.0.0",
"@actions/tool-cache": "^4.0.0"
2020-07-14 17:41:00 +02:00
},
"devDependencies": {
"@types/jest": "^30.0.0",
2026-03-24 14:46:46 +00:00
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
2026-04-04 23:29:21 +03:00
"esbuild": "^0.28.0",
"eslint": "^10.1.0",
"eslint-plugin-check-file": "^3.3.1",
"eslint-plugin-jest": "^29.15.1",
"globals": "^17.4.0",
"jest": "^30.3.0",
"jest-circus": "^30.3.0",
2021-05-25 11:54:58 +02:00
"js-yaml": "^4.1.0",
2024-06-18 10:45:48 +03:00
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"typescript": "^5.9.3"
2020-07-14 17:41:00 +02:00
}
2020-01-03 11:37:01 +01:00
}