-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.27 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
67
68
69
70
71
72
73
{
"name": "@hydre/shimio-graphql",
"version": "5.0.5",
"description": "A GraphQL server and client built on Shimio",
"type": "module",
"main": "src/serve.js",
"scripts": {
"test": "node --harmony-top-level-await --harmony-private-methods test/index.test.js",
"coverage": "c8 --check-coverage node --harmony-top-level-await --harmony-private-methods 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",
"postversion": "git push && git push --tags",
"example:server": "node --harmony-top-level-await --harmony-private-methods example/server/index.js",
"example:client": "node --harmony-top-level-await --harmony-private-methods example/client/index.js"
},
"exports": {
"./query": "./src/query.js",
"./serve": "./src/serve.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hydreio/shimio-graphql.git"
},
"author": "Hydre",
"license": "MIT",
"bugs": {
"url": "https://github.com/hydreio/shimio-graphql/issues"
},
"keywords": [
"graphql",
"shimio",
"server",
"client"
],
"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/shimio-graphql#readme",
"dependencies": {
"@hydre/graphql-batch-executor": "^3.1.3",
"folktale": "^2.3.2",
"graphql": "^15.4.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-numeric-separator": "^7.12.1",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@hydre/doubt": "^7.1.0",
"@hydre/shimio": "^4.2.3",
"@sidy/eslint-config-sidy": "^1.4.15",
"babel-eslint": "^11.0.0-beta.2",
"c8": "^7.3.5",
"casual": "^1.6.2",
"eslint": "^7.12.1",
"eslint-plugin-unicorn": "^23.0.0",
"koa": "^2.13.0",
"prettier-eslint-cli": "^5.0.0",
"supports-color": "^7.2.0",
"tap-spec-emoji": "^6.1.2",
"ws": "^7.3.1"
}
}