generated from apollographql/typescript-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.53 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@apollo/apollo-federation-subgraph-compatibility-action",
"version": "2.0.0",
"description": "Github Action for checking a subgraph's compatibility with a federated gateway",
"main": "dist/index.js",
"author": "Apollo <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/apollographql/apollo-federation-subgraph-compatibility-action"
},
"keywords": [
"github",
"action",
"apollo",
"federation",
"compatibility"
],
"homepage": "https://github.com/apollographql/apollo-federation-subgraph-compatibility-action#readme",
"bugs": {
"url": "https://github.com/apollographql/apollo-federation-subgraph-compatibility-action/issues"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.6.0"
},
"scripts": {
"build": "tsc --build tsconfig.json",
"clean": "git clean -dfqX",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --write .",
"postinstall": "npm run build"
},
"dependencies": {
"@actions/artifact": "^2.0.0",
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"@apollo/federation-subgraph-compatibility-tests": "^2.0.0",
"debug": "^4.3.4"
},
"devDependencies": {
"@types/debug": "4.1.12",
"@types/node": "18.19.14",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"prettier": "3.2.5",
"typescript": "5.3.3",
"ts-node": "10.9.2"
}
}