forked from yaacovCR/graphql-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.48 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
74
75
76
77
78
79
80
81
82
{
"name": "graphql-executor",
"version": "0.0.22",
"description": "A customizable GraphQL Spec compliant Executor class.",
"license": "MIT",
"main": "index",
"module": "index.mjs",
"typesVersions": {
">=4.1.0": {
"*": [
"*"
]
}
},
"sideEffects": false,
"homepage": "https://github.com/yaacovCR/graphql-executor",
"bugs": {
"url": "https://github.com/yaacovCR/graphql-executor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/yaacovCR/graphql-executor.git"
},
"keywords": [
"executor",
"graphql",
"graphql-executor",
"graphql-js"
],
"engines": {
"node": "^12.22.0 || ^14.16.0 || >=16.0.0"
},
"scripts": {
"benchmark": "node benchmark/benchmark.js",
"test": "npm run lint && npm run check && npm run testonly && npm run prettier:check && npm run check:spelling && npm run build",
"lint": "eslint --cache --max-warnings 0 .",
"check": "tsc --pretty",
"testonly": "mocha --full-trace src/**/__tests__/**/*-test.ts",
"testonly:cover": "c8 npm run testonly",
"prettier": "prettier --write --list-different .",
"prettier:check": "prettier --check .",
"check:spelling": "cspell --cache --no-progress **/*",
"build": "npm run build:npm && npm run build:deno",
"build:npm": "node resources/build-npm.js",
"build:deno": "node resources/build-deno.js",
"changeset": "changeset add",
"changeset:version": "changeset version && npm install --package-lock-only",
"changeset:publish": "npm run build:npm && changeset publish"
},
"peerDependencies": {
"graphql": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@babel/core": "7.16.5",
"@babel/plugin-syntax-typescript": "7.16.5",
"@babel/plugin-transform-typescript": "7.16.1",
"@babel/preset-env": "7.16.5",
"@babel/register": "7.16.5",
"@changesets/cli": "^2.19.0",
"@types/chai": "4.3.0",
"@types/mocha": "9.0.0",
"@types/node": "17.0.5",
"@typescript-eslint/eslint-plugin": "5.8.0",
"@typescript-eslint/parser": "5.8.0",
"c8": "7.10.0",
"chai": "4.3.4",
"cspell": "5.13.4",
"eslint": "8.5.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-internal-rules": "file:./resources/eslint-internal-rules",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-tsdoc": "0.2.14",
"mocha": "9.1.3",
"prettier": "2.5.1",
"typescript": "4.5.4"
},
"publishConfig": {
"access": "public",
"directory": "npmDist",
"tag": "latest"
}
}