-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 788 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 788 Bytes
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
{
"name": "hasura-metadata-merge",
"version": "1.1.7",
"description": "Utility to merge hasura config v3 metadata",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "ts-node tests/index.ts",
"build": "tsc"
},
"keywords": [
"hasura",
"metadata",
"merge"
],
"author": "benoit ranque",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/benoitranque/hasura-metadata-merge.git"
},
"dependencies": {
"@hasura/metadata": "^1.0.2",
"graphql": "^15.6.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.3",
"@types/node": "^16.9.6",
"dir-compare": "^3.3.0",
"nodemon": "^2.0.12",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}