Skip to content

Commit b66add3

Browse files
committed
feat(binding): binding example beginnings
1 parent c35b513 commit b66add3

File tree

5 files changed

+464
-0
lines changed

5 files changed

+464
-0
lines changed

.babelrc

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"presets": [
3+
[
4+
"env",
5+
{
6+
"targets": {
7+
"node": "current"
8+
}
9+
}
10+
]
11+
]
12+
}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

package.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "graphql-binding-example-service",
3+
"version": "1.0.0",
4+
"main": "lib/index.js",
5+
"repository": "[email protected]:graphql-binding/graphql-binding-example-service.git",
6+
"author": "Abhi Aiyer <[email protected]>",
7+
"license": "MIT",
8+
"dependencies": {
9+
"graphql-binding": "^2.2.2"
10+
},
11+
"scripts": {
12+
"test": "mocha ./__tests__ --compilers js:babel-register"
13+
},
14+
"devDependencies": {
15+
"babel-cli": "^6.26.0",
16+
"babel-preset-env": "^1.7.0",
17+
"chai": "^4.1.2",
18+
"mocha": "^5.2.0"
19+
}
20+
}

src/index.js

Whitespace-only changes.

0 commit comments

Comments
 (0)