forked from graphql/graphql-js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.76 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
{
"name": "graphql",
"version": "17.0.0-alpha.7",
"description": "A Query Language and Runtime which can target any service.",
"license": "MIT",
"private": true,
"type": "module",
"typesVersions": {
">=4.4.0": {
"*": [
"*"
]
}
},
"sideEffects": false,
"homepage": "https://github.com/graphql/graphql-js",
"bugs": {
"url": "https://github.com/graphql/graphql-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/graphql/graphql-js.git"
},
"keywords": [
"graphql",
"graphql-js"
],
"engines": {
"node": "^16.19.0 || ^18.14.0 || >=19.7.0"
},
"scripts": {
"preversion": "bash -c '. ./resources/checkgit.sh && npm ci --ignore-scripts'",
"version": "node --loader ts-node/esm resources/gen-version.ts && npm test && git add src/version.ts",
"fuzzonly": "mocha --full-trace src/**/__tests__/**/*-fuzz.ts",
"changelog": "node --loader ts-node/esm resources/gen-changelog.ts",
"benchmark": "node --loader ts-node/esm resources/benchmark.ts",
"test": "npm run lint && npm run check && npm run testonly:cover && npm run prettier:check && npm run check:spelling && npm run check:integrations",
"lint": "eslint --cache --max-warnings 0 .",
"check": "tsc --pretty",
"testonly": "mocha --full-trace src/**/__tests__/**/*-test.ts",
"testonly:cover": "c8 npm run testonly",
"testonly:watch": "npm run testonly -- --watch",
"prettier": "prettier --cache --cache-strategy metadata --write --list-different .",
"prettier:check": "prettier --cache --cache-strategy metadata --check .",
"precommit": "lint-staged",
"check:spelling": "cspell --cache --no-progress \"**/*\"",
"check:integrations": "mocha --full-trace resources/integration-test.ts",
"build:npm": "node --loader ts-node/esm resources/build-npm.ts",
"build:deno": "node --loader ts-node/esm resources/build-deno.ts",
"diff:npm": "node --loader ts-node/esm resources/diff-npm-package.ts",
"gitpublish:npm": "bash ./resources/gitpublish.sh npm npmDist",
"gitpublish:deno": "bash ./resources/gitpublish.sh deno denoDist",
"prepare": "husky"
},
"devDependencies": {
"@types/chai": "5.0.1",
"@types/mocha": "10.0.10",
"@types/node": "22.10.1",
"c8": "10.1.2",
"chai": "5.1.2",
"cspell": "8.16.1",
"eslint": "^9.16.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.14.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"mocha": "11.0.1",
"prettier": "3.4.1",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"typescript-eslint": "^8.17.0"
},
"publishConfig": {
"tag": "alpha"
}
}