forked from wix-playground/graphql-query-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "@saneksa/graphql-query-builder",
"version": "3.1.1",
"description": "a simple but powerful graphQL query builder",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^29.5.12",
"@types/node": "^10.5.2",
"jest": "^29.7.0",
"standard-version": "^9.5.0",
"typescript": "^5.5.2"
},
"scripts": {
"build": "tsc",
"test": "jest",
"release": "tsc --noEmit && standard-version && tsc"
},
"repository": {
"type": "git",
"url": "git://github.com/saneksa/graphql-query-builder.git"
},
"homepage": "https://github.com/saneksa/graphql-query-builder",
"keywords": [
"graphql",
"query",
"builder",
"generator",
"orm"
],
"author": {
"name": "Brian Shannon",
"url": "https://github.com/codemeasandwich/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/codemeasandwich/graphql-query-builder/issues"
},
"private": false
}