Skip to content
This repository was archived by the owner on Jan 9, 2023. It is now read-only.

Commit 6c2867a

Browse files
author
Chris McIntosh
authored
Merge pull request #56 from github/adding-queries
Adding queries to the output package
2 parents 178f612 + 2983096 commit 6c2867a

File tree

1 file changed

+47
-46
lines changed

1 file changed

+47
-46
lines changed

packages/core/package.json

+47-46
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,49 @@
11
{
2-
"name": "@github/github-artifact-exporter-core",
3-
"version": "2.0.1",
4-
"description": "> TODO: description",
5-
"author": "Jason Macgowan2 <[email protected]>",
6-
"homepage": "",
7-
"license": "MIT",
8-
"main": "lib/core.js",
9-
"typings": "lib/core.d.ts",
10-
"directories": {
11-
"lib": "lib",
12-
"test": "__tests__"
13-
},
14-
"files": [
15-
"lib"
16-
],
17-
"dependencies": {
18-
"@octokit/rest": "^18.0.7"
19-
},
20-
"devDependencies": {
21-
"@graphql-codegen/cli": "1.15.4",
22-
"@graphql-codegen/introspection": "^1.18.0",
23-
"@graphql-codegen/typescript": "^1.17.11",
24-
"@graphql-codegen/typescript-document-nodes": "^1.17.8",
25-
"@graphql-codegen/typescript-graphql-files-modules": "^1.18.0",
26-
"@graphql-codegen/typescript-operations": "^1.17.8",
27-
"graphql": "^15.4.0",
28-
"rimraf": "^3.0.2",
29-
"tslib": "^2.0.3"
30-
},
31-
"repository": {
32-
"type": "git",
33-
"url": "git+https://github.com/github/github-artifact-exporter.git",
34-
"directory": "packages/core"
35-
},
36-
"scripts": {
37-
"build": "npm run clean && tsc",
38-
"clean": "rimraf ./lib",
39-
"graphql:codegen": "graphql-codegen --config codegen.yml",
40-
"format": "prettier --write ."
41-
},
42-
"gitHead": "bebf4402de364eb82675f1ea2bf90085804881ee",
43-
"pkg": {
44-
"assets": [
45-
"queries/**/*"
46-
]
47-
}
2+
"author": "Jason Macgowan2 <[email protected]>",
3+
"dependencies": {
4+
"@octokit/rest": "^18.0.7"
5+
},
6+
"description": "> TODO: description",
7+
"devDependencies": {
8+
"@graphql-codegen/cli": "1.15.4",
9+
"@graphql-codegen/introspection": "^1.18.0",
10+
"@graphql-codegen/typescript": "^1.17.11",
11+
"@graphql-codegen/typescript-document-nodes": "^1.17.8",
12+
"@graphql-codegen/typescript-graphql-files-modules": "^1.18.0",
13+
"@graphql-codegen/typescript-operations": "^1.17.8",
14+
"graphql": "^15.4.0",
15+
"rimraf": "^3.0.2",
16+
"tslib": "^2.0.3"
17+
},
18+
"directories": {
19+
"lib": "lib",
20+
"test": "__tests__"
21+
},
22+
"files": [
23+
"lib",
24+
"queries"
25+
],
26+
"gitHead": "bebf4402de364eb82675f1ea2bf90085804881ee",
27+
"homepage": "",
28+
"license": "MIT",
29+
"main": "lib/core.js",
30+
"name": "@github/github-artifact-exporter-core",
31+
"pkg": {
32+
"assets": [
33+
"queries/**/*"
34+
]
35+
},
36+
"repository": {
37+
"directory": "packages/core",
38+
"type": "git",
39+
"url": "git+https://github.com/github/github-artifact-exporter.git"
40+
},
41+
"scripts": {
42+
"build": "npm run clean && tsc",
43+
"clean": "rimraf ./lib",
44+
"format": "prettier --write .",
45+
"graphql:codegen": "graphql-codegen --config codegen.yml"
46+
},
47+
"typings": "lib/core.d.ts",
48+
"version": "2.0.1"
4849
}

0 commit comments

Comments
 (0)