setup-android/package.json
2021-02-01 12:16:20 +01:00

47 lines
1.2 KiB
JSON

{
"name": "setup-android",
"version": "1.0.0",
"private": true,
"description": "setup android action",
"main": "lib/main.js",
"scripts": {
"build": "ncc build src/main.ts --out dist/ --minify",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/*.ts",
"test": "jest",
"all": "npm run format && npm run lint && npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daveol/setup-android.git"
},
"keywords": [
"actions",
"node",
"setup",
"android"
],
"author": "daveol",
"license": "ISC",
"dependencies": {
"@actions/cache": "^1.0.5",
"@actions/core": "^1.2.6",
"@actions/tool-cache": "^1.6.1"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@typescript-eslint/parser": "^4.11.1",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.16.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^24.9.0",
"jest-circus": "^26.6.3",
"js-yaml": "^3.14.1",
"prettier": "^2.2.1",
"ts-jest": "^24.2.0",
"typescript": "^4.1.3"
}
}