forked from unlikelystudio/simpleql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.28 KB
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
53
54
{
"name": "@unlikelystudio/simpleql",
"version": "1.3.0-beta.0",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.js",
"description": "Minimal graphql client",
"files": [
"dist"
],
"prettier": "@unlikelystudio/bases-prettier/.prettierrc.json",
"publishConfig": {
"access": "public"
},
"engines": {
"node": "10.x || 12.x || 14.x"
},
"keywords": [
"graphql",
"fetch",
"graphql-client"
],
"homepage": "https://github.com/unlikelystudio/simpleql",
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && tsc -d",
"test": "jest ./src",
"test:watch": "jest ./src --watch",
"prepublish": "npm run build"
},
"peerDependencies": {
"graphql": "^15.3.0"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/node": "^14.10.1",
"@unlikelystudio/bases-prettier": "^1.3.0",
"@unlikelystudio/bases-typescript": "^1.3.1",
"fetch-mock": "^9.10.7",
"graphql-tag": "^2.11.0",
"graphql": "^15.3.0",
"jest-transform-graphql": "^2.1.0",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
},
"dependencies": {
"cross-fetch": "^3.0.6"
}
}