-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 912 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 912 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
36
37
{
"name": "fetch-gql",
"version": "1.2.1",
"description": "Zero-dependency, typed, simplistic and monadic-ish GraphQL client",
"repository": {
"url": "https://github.com/ful-stackz/fetch-gql"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch:build": "nodemon --exec \"npm run build\" --watch src --ext ts",
"test": "jest",
"watch:test": "jest --watch"
},
"keywords": [
"typed",
"simple",
"graphql",
"client"
],
"author": "Ivan Stoyanov",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.23",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"nodemon": "^2.0.7",
"np": "^7.4.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}