setup-android/package.json

51 lines
1.3 KiB
JSON
Raw Normal View History

2020-01-03 02:37:01 -08:00
{
2020-07-14 08:41:00 -07:00
"name": "setup-android",
2020-01-03 02:37:01 -08:00
"version": "1.0.0",
2020-07-14 08:41:00 -07:00
"private": true,
"description": "setup android action",
"main": "lib/main.js",
2020-01-03 02:37:01 -08:00
"scripts": {
"build": "ncc build src/main.ts --out dist/",
2020-07-14 08:41:00 -07:00
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/*.ts",
2020-07-14 08:41:00 -07:00
"test": "jest",
2020-07-25 09:07:39 -07:00
"all": "npm run format && npm run lint && npm run build && npm test"
2020-01-03 02:37:01 -08:00
},
2020-07-14 08:41:00 -07:00
"repository": {
"type": "git",
"url": "git+https://github.com/daveol/setup-android.git"
},
"keywords": [
"actions",
"node",
"setup",
"android"
],
"author": "daveol",
"license": "ISC",
"dependencies": {
2022-04-21 20:18:23 -07:00
"@actions/cache": "^2.0.2",
"@actions/core": "^1.3.0",
"@actions/tool-cache": "^1.6.1",
"fs-extra": "^10.0.0"
2020-07-14 08:41:00 -07:00
},
"devDependencies": {
2021-05-25 02:54:58 -07:00
"@types/fs-extra": "^9.0.11",
2022-04-21 20:18:23 -07:00
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"@vercel/ncc": "^0.33.4",
"eslint": "^8.13.0",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-jest": "^26.1.4",
"jest": "^27.5.1",
"jest-circus": "^27.0.6",
2021-05-25 02:54:58 -07:00
"js-yaml": "^4.1.0",
"prettier": "^2.3.0",
2022-04-21 20:18:23 -07:00
"ts-jest": "^27.1.4",
"typescript": "^4.2.4"
2020-07-14 08:41:00 -07:00
}
2020-01-03 02:37:01 -08:00
}