-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 964 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 964 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
38
39
40
41
42
{
"name": "graphql-combine-query",
"version": "1.2.4",
"description": "combine graphql query documents",
"keywords": [
"graphql",
"combine",
"merge"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"author": "Domas Lapinskas <domasx2@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/domasx2/graphql-combine-query.git"
},
"bugs": {
"url": "https://github.com/domasx2/graphql-combine-query/issues"
},
"scripts": {
"prepublish": "tsc",
"test": "mocha -r ts-node/register tests.ts",
"release": "tsc & release-it"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"graphql": "^15.1.0",
"mocha": "^8.1.3",
"release-it": "^14.0.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"peerDependencies": {
"graphql": "^15.1.0 || ^16.0.0"
}
}