setup-godot/package.json
Joanna May fe0bfb4b4b
fix: get tests working again locally on macOS, update readme to show new feature (#23)
* docs: update readme

* fix: get tests passing on macOS locally by normalizing path
2023-03-29 17:37:01 -05:00

50 lines
1.5 KiB
JSON

{
"name": "setup-godot",
"version": "1.0.0",
"private": true,
"description": "Setup Godot for use with .NET on macOS, Windows, and Linux CI/CD runners.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"package-local": "export NODE_OPTIONS=--openssl-legacy-provider; ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
"all-local": "npm run build && npm run format && npm run lint && npm run package-local && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chickensoft-games/setup-godot.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/cache": "^3.1.2",
"@actions/core": "^1.10.0",
"@actions/tool-cache": "^2.0.1",
"@types/normalize-path": "^3.0.0",
"normalize-path": "^3.0.0"
},
"devDependencies": {
"@types/node": "^18.14.2",
"@typescript-eslint/parser": "^5.54.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.33.0",
"eslint-plugin-github": "^4.6.1",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.3",
"js-yaml": "^4.1.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}