-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1011 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
35
36
37
38
39
40
{
"name": "assign-to-repository-projects",
"version": "0.0.1",
"description": "Github Action assigning pull requests to GitHub projects of a repository",
"main": "index.js",
"type": "module",
"scripts": {
"build": "ncc build index.js",
"lint": "eslint .",
"test": "jest --config=jest.config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/babbel/assign-to-repository-projects.git"
},
"keywords": [
"node.js",
"github",
"actions",
"projects"
],
"dependencies": {
"@actions/core": "*",
"@actions/github": "*",
"@octokit/graphql": "*",
"@octokit/plugin-paginate-graphql": "*",
"msw": "^2.7.0"
},
"devDependencies": {
"@vercel/ncc": "*",
"eslint": "*",
"eslint-config-airbnb-base": "*",
"eslint-plugin-import": "*",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
},
"author": "Babbel",
"license": "MIT",
"homepage": "https://github.com/babbel/assign-to-repository-projects#readme"
}