This repository was archived by the owner on Apr 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 2.1 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 2.1 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "graphqelm",
"version": "3.1.12",
"scripts": {
"build": "webpack",
"elm-nuke": "rm -rf elm-stuff && elm package install -y && cd tests && rm -rf elm-stuff && elm package install -y && cd ..",
"start": "cd examples && elm-live src/GithubComplex.elm --open --output=elm.js",
"test": "elm-test",
"gen:starwars": "npm run build && ./bin/graphqelm https://graphqelm.herokuapp.com --base Swapi --output examples/src",
"gen:normalize_test": "npm run build && cd ete_tests && ../bin/graphqelm http://localhost:4000 --base Normalize && cd -",
"gen:github": "npm run build && ./bin/graphqelm --introspection-file examples/github-schema.json --base Github --output examples/src",
"approve": "npm run build && npm link && graphqelm --introspection-file examples/github-schema.json --base Github --output examples/src && graphqelm https://graphqelm.herokuapp.com/api --base Swapi --output examples/src && echo 'Ensuring documentation is valid...' && elm-make --docs=documentation.json && echo 'Confirming that examples folder is clean...' && (git diff --exit-code -- examples || (echo 'FAILURE' && echo 'examples code has changed. Commit changes to approve.' && exit 1)) && echo 'SUCCESS'",
"elm-analyse": "elm-analyse --serve"
},
"keywords": [
"elm",
"graphql"
],
"repository": "https://github.com/dillonkearns/graphqelm",
"author": "Dillon Kearns",
"license": "BSD-3-Clause",
"devDependencies": {
"@types/fs-extra": "^5.0.0",
"@types/glob": "^5.0.34",
"@types/minimist": "^1.2.0",
"@types/node": "^8.5.2",
"@types/request": "^2.0.9",
"@types/webpack": "^3.8.1",
"elm": "^0.18.0",
"elm-analyse": "^0.13.3",
"elm-hot-loader": "0.5.4",
"elm-test": "^0.18.12",
"elm-live": "^2.7.5",
"elm-webpack-loader": "^4.3.1",
"fs-extra": "^5.0.0",
"ts-loader": "^3.2.0",
"typescript": "^2.6.2",
"webpack": "^3.10.0"
},
"dependencies": {
"elm-format": "^0.7.0-exp",
"glob": "^7.1.2",
"graphql-request": "^1.4.0",
"minimist": "^1.2.0",
"request": "^2.83.0"
},
"bin": {
"graphqelm": "bin/graphqelm"
}
}