forked from gabrielfalcao/pyenv-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "pyenv-action",
"version": "16",
"private": true,
"description": "Setup python action",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"release": "ncc build src/pyenv-action.ts && git add -f dist/",
"test": "jest --runInBand",
"test-watch": "jest --runInBand --detectOpenHandles --bail --watch",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielfalcao/pyenv-action.git"
},
"engines": {
"node": "^18"
},
"keywords": [
"github",
"actions",
"python",
"pyenv",
"node",
"setup"
],
"author": "Gabriel Falcão",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "1.1.1",
"@actions/github": "6.0.0",
"@actions/io": "1.1.3",
"@actions/tool-cache": "2.0.1",
"semver": "7.5.4"
},
"devDependencies": {
"@types/jest": "29.5.8",
"@types/node": "18.11.9",
"@types/semver": "7.5.5",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vercel/ncc": "0.38.0",
"eslint": "7.32.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.4.1",
"jest": "29.7.0",
"jest-circus": "29.7.0",
"prettier": "3.0.3",
"ts-jest": "29.1.1",
"typescript": "4.3.5"
}
}