setup-android/package.json

48 lines
1.2 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/ --minify",
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": {
"@actions/cache": "^1.0.5",
"@actions/core": "^1.2.6",
2020-12-31 11:04:54 -08:00
"@actions/tool-cache": "^1.6.1"
2020-07-14 08:41:00 -07:00
},
"devDependencies": {
2020-12-31 11:04:54 -08:00
"@types/jest": "^26.0.19",
"@types/node": "^14.14.22",
2020-12-31 11:04:54 -08:00
"@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",
2020-07-14 08:41:00 -07:00
"jest": "^24.9.0",
"jest-circus": "^26.6.3",
2020-12-31 11:04:54 -08:00
"js-yaml": "^3.14.1",
"prettier": "^2.2.1",
2020-07-14 08:41:00 -07:00
"ts-jest": "^24.2.0",
2020-12-31 11:04:54 -08:00
"typescript": "^4.1.3"
2020-07-14 08:41:00 -07:00
}
2020-01-03 02:37:01 -08:00
}