mirror of
https://github.com/sparksp/elm-format-action.git
synced 2024-11-28 04:42:56 +03:00
54 lines
1.4 KiB
JSON
54 lines
1.4 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.0.4",
|
|
"@actions/glob": "^0.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.20",
|
|
"@types/node": "^14.14.20",
|
|
"@typescript-eslint/parser": "^4.12.0",
|
|
"@zeit/ncc": "^0.22.3",
|
|
"elm-tooling": "^1.10.0",
|
|
"eslint": "^7.17.0",
|
|
"eslint-plugin-github": "^4.1.1",
|
|
"eslint-plugin-jest": "^24.1.3",
|
|
"eslint-plugin-prettier": "^3.3.1",
|
|
"jest": "^26.6.3",
|
|
"jest-circus": "^26.6.3",
|
|
"js-yaml": "^4.0.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^2.2.1",
|
|
"ts-jest": "^26.4.4",
|
|
"typescript": "^4.1.3"
|
|
}
|
|
}
|