generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.88 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
{
"name": "@pedrolamas/handlebars-action",
"version": "2.4.0",
"private": true,
"description": "GitHub Action for Handlebars Template Transformation",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && 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}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedrolamas/handlebars-action.git"
},
"keywords": [
"handlebars",
"action",
"template",
"transformation",
"github",
"repository",
"repo",
"setup"
],
"author": "Pedro Lamas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pedrolamas/handlebars-action/issues"
},
"homepage": "https://github.com/pedrolamas/handlebars-action#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/glob": "^0.5.0",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.17.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.0",
"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.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}