forked from helaili/github-graphql-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.06 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.06 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
46
47
48
49
50
{
"name": "github-graphql-action",
"version": "2.0.0",
"description": "An action that acts a client for GitHub's GraphQL API",
"main": "entrypoint.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helaili/github-graphql-action.git"
},
"keywords": [
"graphql",
"github-action"
],
"author": "Alain Hélaïli",
"license": "MIT",
"bugs": {
"url": "https://github.com/helaili/github-graphql-action/issues"
},
"homepage": "https://github.com/helaili/github-graphql-action#readme",
"dependencies": {
"@octokit/graphql": "^4.3.1",
"actions-toolkit": "^3.0.1",
"axios": "^0.18.1",
"node-yaml": "^3.1.1"
},
"devDependencies": {
"jest": "^25.1.0"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/tests/setup.js"
],
"moduleFileExtensions": [
"js",
"json"
],
"testMatch": [
"<rootDir>/tests/**/*.test.(ts|js)"
],
"globals": {
"ts-jest": {
"babelConfig": false
}
}
}
}