forked from graphql/gaps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 759 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 759 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
{
"name": "@graphql/gaps",
"private": true,
"homepage": "https://gaps.graphql.org/",
"type": "module",
"engines": {
"node": "24.x"
},
"scripts": {
"format": "prettier --write .",
"suggest:format": "echo \"\nTo resolve this, run: $(tput bold)npm run format$(tput sgr0)\" && exit 1",
"test:format": "prettier --check . || npm run suggest:format",
"test:spelling": "cspell \"spec/**/*.md\" README.md LICENSE.md",
"test:structure": "find . -maxdepth 1 -type d -name 'GAP-*' -exec ./scripts/validate-structure.js {} \\;"
},
"devDependencies": {
"ajv": "^8.17.1",
"cspell": "5.9.1",
"nodemon": "2.0.20",
"prettier": "^3.8.1",
"spec-md": "^3.1.0",
"validator": "^13.12.0",
"yaml": "^2.7.0"
}
}