elm-format-action/package.json
2022-12-11 18:54:51 +00:00

54 lines
1.5 KiB
JSON

{
"name": "elm-format-action",
"version": "1.0.0",
"description": "Validate Elm code is formatted correctly",
"main": "lib/main.js",
"scripts": {
"postinstall": "elm-tooling install",
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"all": "run-s build format lint pack test"
},
"homepage": "https://github.com/sparksp/elm-format-action#readme",
"bugs": {
"url": "https://github.com/sparksp/elm-format-action/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sparksp/elm-format-action.git"
},
"keywords": [
"actions",
"elm-format"
],
"author": "Phill Sparks <me@phills.me.uk> (https://github.com/sparksp)",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.3.0"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.13",
"@typescript-eslint/parser": "^5.46.0",
"@vercel/ncc": "^0.36.0",
"elm-tooling": "^1.10.0",
"eslint": "^8.29.0",
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-circus": "^29.3.1",
"js-yaml": "^4.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}