{ "name": "flutter-action", "version": "1.0.2", "private": true, "description": "Flutter environment for use in actions", "main": "lib/index.js", "scripts": { "build": "tsc", "format": "prettier --write **/*.ts", "format-check": "prettier --check **/*.ts", "test": "jest" }, "repository": { "type": "git", "url": "git+https://github.com/subosito/flutter-action.git" }, "keywords": [ "actions", "node", "flutter", "setup" ], "author": "Alif Rachmawadi ", "license": "MIT", "dependencies": { "@actions/core": "^1.0.0", "@actions/exec": "^1.0.0", "@actions/io": "^1.0.0", "@actions/tool-cache": "^1.0.0", "uuid": "^3.3.2" }, "devDependencies": { "@types/jest": "^24.0.13", "@types/nock": "^10.0.3", "@types/node": "^12.0.4", "@types/semver": "^6.0.0", "@types/uuid": "^3.4.5", "husky": "^3.0.0", "jest": "^24.8.0", "jest-circus": "^24.7.1", "nock": "^10.0.6", "prettier": "^1.17.1", "ts-jest": "^24.0.2", "typescript": "^3.5.1" }, "husky": { "skipCI": true, "hooks": { "pre-commit": "npm run build && npm run format", "post-commit": "npm prune --production && git add node_modules/* && git commit -m \"Husky commit correct node modules\"" } } }