forked from graphql/graphql-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 762 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 762 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
26
27
{
"name": "graphql-spec",
"private": true,
"contributors": [
"Lee Byron <lee@leebyron.com> (http://leebyron.com/)",
"Nicholas Schrock <schrockn@fb.com>",
"Daniel Schafer <dschafer@fb.com>"
],
"license": "OWFa-1.0",
"homepage": "https://facebook.github.io/graphql",
"bugs": {
"url": "https://github.com/facebook/graphql/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/facebook/graphql.git"
},
"scripts": {
"test": "spec-md spec/GraphQL.md > /dev/null",
"build": "mkdir -p out; spec-md spec/GraphQL.md > out/index.html",
"watch": "mkdir -p out; nodemon --exec 'spec-md > out/index.html' spec/GraphQL.md"
},
"devDependencies": {
"nodemon": "1.17.1",
"spec-md": "0.6.0"
}
}