-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.02 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@hydre/graphql-batch-executor",
"version": "3.3.0",
"description": "A transform stream executing multiple graphql operations in parallel",
"type": "module",
"main": "./src/Executor.js",
"scripts": {
"test": "node --harmony-top-level-await test/index.test.js",
"coverage": "c8 --check-coverage node --harmony-top-level-await test/index.test.js",
"lint": "prettier-eslint $PWD/\"**/*.js\" --print-width 80 --list-different && eslint --color .",
"format": "prettier-eslint $PWD/\"**/*.js\" --print-width 80 --write",
"example": "DEBUG='batch:example*' node --harmony-top-level-await example/index.js",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hydreio/graphql-batch-executor.git"
},
"author": "Hydre",
"license": "UNLICENSE",
"bugs": {
"url": "https://github.com/hydreio/graphql-batch-executor/issues"
},
"exports": {
".": "./src/Executor.js",
"./make_schema": "./src/make_schema.js"
},
"keywords": [
"graphql",
"executor",
"batch"
],
"babel": {
"parserOpts": {
"allowAwaitOutsideFunction": true
},
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-syntax-import-meta"
]
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/hydreio/graphql-batch-executor#readme",
"dependencies": {
"debug": "^4.3.3",
"graphql": "^16.3.0"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-numeric-separator": "^7.16.7",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@hydre/doubt": "^7.2.1",
"@hydre/eslint-config-hydre": "^1.4.16",
"c8": "^7.11.0",
"eslint": "^7.32.0",
"eslint-plugin-unicorn": "^40.1.0",
"prettier-eslint-cli": "^5.0.1",
"supports-color": "^9.2.1",
"tap-spec-emoji": "^6.1.2"
}
}