-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 847 Bytes
/
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
{
"name": "qetch",
"version": "0.0.2",
"description": "🐕 Simple GraphQL client to execute queries and mutations",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "github.com/arjndr/qetch",
"author": "Akash Rajendra",
"license": "MIT",
"files": [
"dist/"
],
"scripts": {
"test": "jest",
"prepublish": "yarn build",
"build": "tsc"
},
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.2",
"@types/node-fetch": "^2.5.5",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.7.0",
"typescript": "^3.8.3"
},
"dependencies": {
"es6-promise": "^4.2.8",
"isomorphic-fetch": "^2.2.1"
},
"keywords": [
"graphql",
"client",
"apollo",
"queries",
"mutations"
]
}