generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "add-to-milestone-action",
"version": "1.3.0",
"private": true,
"description": "Add PR to a milestone",
"main": "lib/main.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:check": "tsc -p tsconfig.json --noEmit",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --minify --license licenses.txt",
"test": "jest",
"all": "yarn build && yarn format && yarn lint && yarn test && yarn package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrefcdias/add-to-milestone.git"
},
"keywords": [
"actions",
"pr",
"milestone"
],
"author": "andrefcdias",
"license": "MIT",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"minimatch": "5.1.0"
},
"devDependencies": {
"@octokit/webhooks-types": "6.4.0",
"@types/jest": "29.2.0",
"@types/minimatch": "5.1.2",
"@types/node": "18.11.18",
"@typescript-eslint/parser": "5.48.0",
"@vercel/ncc": "0.34.0",
"casual": "1.6.2",
"eslint": "8.31.0",
"eslint-plugin-github": "4.3.7",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.2.1",
"js-yaml": "4.1.0",
"prettier": "2.7.1",
"ts-jest": "29.0.3",
"typescript": "4.8.4"
}
}