-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "ga-playground",
"description": "Playground to learn and save all github-actions template I use on my open source projects.",
"version": "1.1.0",
"packageManager": "[email protected]",
"author": "Mirko Quaglia <[email protected]> (https://github.com/gladiuscode)",
"main": "build/index",
"source": "src/index",
"files": [
"src",
"build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"release": "release-it --ci",
"build": "tsc",
"lint": "eslint ./src"
},
"devDependencies": {
"@eslint/js": "9.19.0",
"@release-it/conventional-changelog": "10.0.0",
"eslint": "9.19.0",
"globals": "15.14.0",
"release-it": "18.1.2",
"typescript": "5.7.3",
"typescript-eslint": "8.21.0"
},
"engines": {
"node": "=18.20.6"
},
"keywords": [
"github-actions",
"github",
"actions",
"playground",
"template"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gladiuscode/github-actions-playground.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"license": "MIT"
}