generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "issue-to-markdown",
"version": "1.2.2",
"private": true,
"description": "A GitHub Action to monitor and convert issues into markdown files within your repository.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"test:watch": "jest --watch",
"all": "yarn build && yarn format && yarn lint && yarn package && yarn test",
"deploy": "./scripts/deploy.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eunjae-lee/issue-to-markdown.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Eunjae Lee",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"dayjs": "^1.11.7",
"download": "^8.0.0",
"file-type": "^19.0.0",
"gray-matter": "^4.0.3",
"mkdirp": "^2.1.3",
"yaml": "^2.2.1"
},
"devDependencies": {
"@types/download": "8.0.2",
"@types/node": "18.11.18",
"@typescript-eslint/parser": "5.50.0",
"@vercel/ncc": "0.36.1",
"eslint": "8.33.0",
"eslint-plugin-github": "4.6.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.4.1",
"js-yaml": "4.1.0",
"prettier": "2.8.3",
"ts-jest": "29.0.5",
"typescript": "4.9.5",
"zx": "7.1.1"
}
}