generated from srealmoreno/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.53 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "label-sync-action",
"version": "2.0.0",
"engines": {
"node": "v20",
"npm": "v10"
},
"description": "Keeps your labels in sync in a GitHub repo(s) from a config file. Manage all tags from all your repositories in a single place.",
"main": "dist/label-sync-action.cjs",
"type": "module",
"scripts": {
"dist": "npm run bundle",
"bundle": "esbuild --outfile=dist/label-sync-action.cjs --platform=node --target=node20 --minify --bundle src/app.js",
"build:esm": " tsc --target es2022 --module es2022 --outDir build/esm2022 && tsc-alias --dir build/esm2022",
"build:esm6": "tsc --target es6 --module esm6 --outDir build/es6 && tsc-alias --dir build/esm6",
"build:cjs": " tsc --target es6 --module commonjs --outDir build/cjs && tsc-alias --dir build/cjs",
"clean": "rm -rf build dist",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1",
"test:build": "tsc --noEmit"
},
"keywords": [
"github",
"action",
"label",
"sync",
"github-label-sync"
],
"author": "Salvador Real - Srealmoreno <srealmoreno@srealmorneo.com>",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/srealmoreno/github-label-sync.git"
},
"bugs": {
"url": "https://github.com/srealmoreno/rae-tesis/issues/new/choose"
},
"homepage": "https://github.com/srealmoreno/github-label-sync",
"dependencies": {
"@actions/core": "1.10.1",
"ajv-errors": "3.0.0",
"axios": "1.7.7",
"github-label-sync": "2.3.1",
"js-yaml": "4.1.0",
"jsonc-simple-parser": "3.0.0",
"octokit": "2.0.14",
"regex-parser": "2.3.0"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "3.1.0",
"@types/github-label-sync": "2.0.2",
"@types/js-yaml": "4.0.9",
"@types/node": "22.7.4",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/experimental-utils": "5.62.0",
"esbuild": "0.24.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-promise": "6.6.0",
"semver": "7.6.3",
"ts-standard": "12.0.2",
"typescript": "5.6.2"
},
"eslintConfig": {
"env": {
"node": true,
"browser": false,
"es6": true
},
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"./node_modules/ts-standard/eslintrc.json"
],
"rules": {}
},
"prettier": {
"trailingComma": "none",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": false
}
}