forked from jonirrings/graphql-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.11 KB
/
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
{
"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": "BSD",
"homepage": "https://facebook.github.io/graphql",
"bugs": {
"url": "https://github.com/facebook/graphql/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/facebook/graphql.git"
},
"translation":[
{
"language":"zh-CN",
"type":"git",
"url":"https://github.com/jonirrings/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 \"Jonir Rings\" && git config user.email \"peterpuyi@live.cn\" && git add . && git commit -m \"Deploy to GitHub Pages\" && git push --force --quiet \"https://${GH_TOKEN}@github.com/jonirrings/graphql.git\" master:gh-pages > /dev/null 2>&1)"
},
"devDependencies": {
"spec-md": "0.4.7"
}
}