-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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": "gql-dedup",
"version": "1.0.3",
"description": "A graphql-tag improvement library which de-duplicates fragments.",
"homepage": "https://github.com/dimikot/gql-dedup#readme",
"author": "Dimi Kot",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dimikot/gql-dedup.git"
},
"bugs": {
"url": "https://github.com/dimikot/gql-dedup/issues"
},
"keywords": [
"graphql",
"tag",
"dedup",
"deduplicate",
"fragments",
"apollo",
"gql"
],
"main": "./dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"clean": "rm -rf dist node_modules yarn.lock package-lock.json",
"deploy": "npm run build && npm test && npm publish"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"jest": "^26.1.0",
"ts-jest": "^26.1.1",
"typescript": "^4.8",
"graphql-tag": "^2.10.3",
"graphql": "^14.5.4"
},
"peerDependencies": {
"graphql-tag": "^2.0.0",
"graphql": "^14.0.0"
},
"dependencies": {}
}