generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 2.06 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@pedrolamas/handlebars-action",
"description": "GitHub Action for Handlebars Template Transformation",
"version": "2.4.0",
"author": "Pedro Lamas <[email protected]>",
"private": true,
"homepage": "https://github.com/pedrolamas/handlebars-action#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pedrolamas/handlebars-action.git"
},
"bugs": {
"url": "https://github.com/pedrolamas/handlebars-action/issues"
},
"keywords": [
"handlebars",
"action",
"template",
"transformation",
"github",
"repository",
"repo",
"setup"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"package:watch": "npm run package -- --watch",
"package": "ncc build src/index.ts -o dist --source-map --license licenses.txt",
"local-action": "local-action . src/main.ts .env",
"test": "jest",
"all": "npm run lint && npm run package",
"lint": "npm run lint:code && npm run lint:other",
"lint:code": "npm run eslint:defaults",
"lint:other": "npm run prettier:defaults -- --check",
"format": "npm run format:code && npm run format:other",
"format:code": "npm run eslint:defaults -- --fix",
"format:other": "npm run prettier:defaults -- --write",
"eslint:defaults": "eslint . --ext .ts,.tsx,.js,.jsx",
"prettier:defaults": "prettier \"**/*.{json,md,markdown,css,scss,yaml,yml}\""
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/glob": "^0.5.0",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@github/local-action": "^2.2.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.1",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}