forked from graphql/graphql-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 884 Bytes
/
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
{
"name": "graphql-spec",
"private": true,
"contributors": [
"Lee Byron <[email protected]> (http://leebyron.com/)",
"Nicholas Schrock <[email protected]>",
"Daniel Schafer <[email protected]>"
],
"license": "OWFa-1.0",
"homepage": "https://graphql.github.io/graphql-spec",
"repository": {
"type": "git",
"url": "http://github.com/graphql/graphql-spec.git"
},
"scripts": {
"test": "npm run test:build && npm run test:spellcheck",
"test:build": "spec-md spec/GraphQL.md > /dev/null",
"test:spellcheck": "cspell 'spec/**/*.md' README.md",
"build": "mkdir -p out; spec-md --githubSource 'https://github.com/graphql/graphql-spec/blame/main/' spec/GraphQL.md > out/index.html",
"watch": "nodemon -e json,md --exec 'npm run build'"
},
"devDependencies": {
"cspell": "5.3.12",
"nodemon": "2.0.7",
"spec-md": "3.0.2"
}
}