-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.23 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
{
"name": "build-issue-dependencies-graph",
"version": "1.0.0",
"private": true,
"description": "Set up your GitHub Actions workflow with a specific version of Xcode",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build",
"test": "jest",
"format": "npx prettier --write src/**/* tests/**/*",
"format-check": "npx prettier --check src/**/* tests/**/*",
"lint": "npx eslint **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxim-lobanov/build-issue-dependencies-graph.git"
},
"author": "Maxim Lobanov",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.6",
"jest": "^29.3.1",
"jest-circus": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}