-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
34
35
36
37
38
39
40
41
42
{
"name": "graphql-query-builder",
"version": "1.0.7",
"description": "a simple but powerful graphQL query builder",
"main": "index.js",
"bin": {},
"directories": {
"example": "example"
},
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"istanbul": "^0.4.4",
"mocha": "^3.0.1"
},
"scripts": {
"test": "mocha ./test.js",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/codemeasandwich/graphql-query-builder.git"
},
"homepage": "https://github.com/codemeasandwich/graphql-query-builder",
"keywords": [
"graphql",
"query",
"builder",
"generator",
"orm",
"queries"
],
"author": {
"name": "Brian Shannon",
"url": "https://github.com/codemeasandwich/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/codemeasandwich/graphql-query-builder/issues"
}
}