-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 947 Bytes
/
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
{
"name": "trigger-open-pr-workflow",
"version": "1.0.0",
"description": "Trigger Open PR workflow",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts -o dist",
"lint": "eslint src/**",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["github", "actions", "open-pr"],
"author": "Grahn Cooledge",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/github": "^4.0.0",
"axios": "^0.26.0",
"graphql": "^16.3.0",
"graphql-request": "^4.0.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vercel/ncc": "^0.28.3",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}