generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
92 lines (92 loc) · 2.89 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
87
88
89
90
91
92
{
"name": "template-sync-action",
"version": "1.0.0-alpha.10",
"private": true,
"description": "Keep your github template fork up to date.",
"keywords": [
"actions",
"node",
"setup",
"fork",
"automation",
"sync",
"github-template",
"github-templates"
],
"repository": {
"type": "git",
"url": "git+https://github.com/narrowspark/template-sync-action.git"
},
"license": "MIT",
"author": "prisis",
"main": "lib/main.js",
"scripts": {
"postinstall": "husky install",
"build": "tsc && tsc src/misc/generate-docs.ts --outDir ./lib/misc",
"lint": "yarn run lint:eslint && yarn run lint:text",
"lint:staged": "lint-staged",
"lint:text": "textlint ./.build/ISSUE_TEMPLATE/** ./src/** ./docs/** ./README.md ./UPGRADE.md --dry-run",
"lint:text:fix": "textlint ./.build/ISSUE_TEMPLATE/** ./src/** ./docs/** ./README.md ./UPGRADE.md --fix",
"fix:lint:eslint": "yarn run lint --fix",
"lint:eslint": "cross-env NO_LOGS=true eslint -c ./.eslintrc.cjs --ext .js,.ts,.tsx ./src",
"pack": "ncc build",
"test": "jest",
"all": "yarn run lint && yarn run build && yarn run pack && yarn test && node lib/misc/generate-docs.js"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@actions/core": "1.5.0",
"@actions/exec": "1.1.0",
"@actions/io": "1.1.1",
"@actions/tool-cache": "1.7.1",
"@octokit/action": "3.17.0",
"@octokit/plugin-retry": "3.0.9",
"filehound": "1.17.5",
"fs-extra": "10.0.0",
"uuid": "8.3.2"
},
"devDependencies": {
"@anolilab/eslint-config": "2.2.0",
"@anolilab/textlint-config": "2.0.9",
"@anolilab/prettier-config": "2.0.5",
"@octokit/fixtures": "22.0.2",
"@octokit/types": "6.34.0",
"@types/bluebird": "3.5.36",
"@types/fs-extra": "9.0.13",
"@types/jest": "27.4.0",
"@types/js-yaml": "4.0.5",
"@types/node": "16.11.18",
"@types/promise-retry": "1.1.3",
"@types/uuid": "8.3.3",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"@zeit/ncc": "0.22.3",
"eslint": "7.32.0",
"eslint-plugin-jest": "24.7.0",
"husky": "7.0.4",
"jest": "27.4.5",
"jest-circus": "27.4.5",
"js-yaml": "4.1.0",
"prettier": "2.5.1",
"ts-jest": "27.1.2",
"typescript": "4.5.4",
"cross-env": "^7.0.3"
},
"engines": {
"node": ">=12"
}
}