forked from graphql/graphql-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 986 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
28
29
30
31
32
33
34
{
"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://spec.graphql.org/",
"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",
"format": "prettier --write '**/*.{md,yml,yaml,json}'",
"format:check": "prettier --check '**/*.{md,yml,yaml,json}'",
"build": "./build.sh",
"watch": "nodemon -e json,md --exec 'npm run build'"
},
"devDependencies": {
"cspell": "5.9.1",
"nodemon": "2.0.12",
"prettier": "^2.3.0",
"spec-md": "3.0.2"
},
"prettier": {
"proseWrap": "always",
"trailingComma": "none"
}
}