setup-android/package.json

50 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": {
2020-07-25 09:07:39 -07:00
"build": "ncc build src/main.ts --out dist/main --minify && ncc build src/post.ts --out dist/post --minify",
2020-07-14 08:41:00 -07:00
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"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.2",
2020-07-14 08:41:00 -07:00
"@actions/core": "^1.2.0",
"@actions/tool-cache": "^1.6.0",
2020-07-25 09:07:39 -07:00
"axios": "^0.19.2",
"xml-js": "^1.6.11"
2020-07-14 08:41:00 -07:00
},
"devDependencies": {
"@types/jest": "^26.0.9",
2020-07-14 08:41:00 -07:00
"@types/node": "^12.7.12",
"@typescript-eslint/parser": "^3.9.0",
2020-07-14 08:41:00 -07:00
"@zeit/ncc": "^0.20.5",
"eslint": "^6.8.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^23.20.0",
2020-07-14 08:41:00 -07:00
"jest": "^24.9.0",
"jest-circus": "^26.3.0",
2020-07-14 08:41:00 -07:00
"js-yaml": "^3.13.1",
"prettier": "^2.0.5",
2020-07-14 08:41:00 -07:00
"ts-jest": "^24.2.0",
"typescript": "^3.9.7"
2020-07-14 08:41:00 -07:00
}
2020-01-03 02:37:01 -08:00
}