-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.12 KB
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
{
"name": "sync-repository-projects",
"version": "0.0.1",
"description": "Github Action synchronizing GitHub projects required for 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/sync-repository-projects.git"
},
"keywords": [
"node.js",
"github",
"actions",
"projects"
],
"dependencies": {
"@actions/core": "*",
"@actions/github": "*",
"@octokit/graphql": "*",
"@octokit/plugin-paginate-graphql": "*"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@vercel/ncc": "*",
"eslint": "^10.2.0",
"eslint-plugin-import-x": "^4.16.2",
"globals": "^17.5.0",
"jest": "^30.3.0",
"msw": "^2.13.3",
"ts-jest": "^29.4.9"
},
"author": "Babbel",
"license": "MIT",
"bugs": {
"url": "https://github.com/babbel/sync-repository-projects/issues"
},
"homepage": "https://github.com/babbel/sync-repository-projects#readme"
}