-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
package.json
26 lines (26 loc) · 988 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
{
"name": "graphql-spec",
"private": true,
"contributors": [
"Lee Byron <[email protected]> (http://leebyron.com/)",
"Nicholas Schrock <[email protected]>",
"Daniel Schafer <[email protected]>"
],
"license": "BSD",
"homepage": "https://facebook.github.io/graphql",
"bugs": {
"url": "https://github.com/facebook/graphql/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/facebook/graphql.git"
},
"scripts": {
"test": "spec-md spec/GraphQL.md > /dev/null",
"build": "mkdir -p out; cp node_modules/spec-md/css/* out; spec-md spec/GraphQL.md > out/index.html",
"deploy": "npm run build && (cd out && git init && git config user.name \"Travis CI\" && git config user.email \"[email protected]\" && git add . && git commit -m \"Deploy to GitHub Pages\" && git push --force --quiet \"https://${GH_TOKEN}@github.com/facebook/graphql.git\" master:gh-pages > /dev/null 2>1)"
},
"devDependencies": {
"spec-md": "0.4.5"
}
}