-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.36 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
47
48
49
50
51
52
53
54
55
{
"name": "@unlikelystudio/simpleql",
"version": "2.0.0-rc.2",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.es.js",
"description": "Minimal graphql client",
"files": [
"dist"
],
"prettier": "@unlikelystudio/bases-prettier/.prettierrc.json",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"graphql",
"fetch",
"graphql-client"
],
"homepage": "https://github.com/unlikelystudio/simpleql",
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && rollup -c",
"test": "jest ./src",
"test:watch": "jest ./src --watch",
"prepublish": "npm run build"
},
"peerDependencies": {
"graphql": ">=15.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.1",
"@unlikelystudio/bases-prettier": "^1.3.0",
"@unlikelystudio/bases-typescript": "^1.3.1",
"fetch-mock": "^9.11.0",
"graphql": "^15.3.0",
"graphql-tag": "^2.12.5",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.3.1",
"jest-transform-graphql": "^2.1.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^27.0.7",
"tslib": "^2.5.3",
"typescript": "^4.4.4"
}
}