-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.38 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
{
"name": "latest-php-releases-action",
"version": "1.0.0",
"description": "A Github Action to get latest PHP releases.",
"keywords": [
"github-action",
"php-releases"
],
"license": "MIT",
"author": {
"email": "dominikszamburski99@gmail.com",
"name": "Dominik Szamburski",
"url": "https://github.com/sxbrsky"
},
"exports": {
".": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sxbrsky/latest-php-releases-action.git"
},
"scripts": {
"bundle": "npm run lint && npm run build",
"build": "ncc build ./src/index.ts -o dist --source-map --minify --license licenses.txt",
"build:watch": "ncc build ./src/index.ts -o dist --source-map --watch",
"lint": "eslint .",
"prettier": "prettier --write ."
},
"dependencies": {
"@actions/core": "^1.11.1"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "3.3.2",
"prettier-eslint": "^16.3.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.1"
}
}