forked from larsbs/graysql
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 846 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
27
28
29
30
31
32
33
{
"name": "graysql",
"version": "0.4.2",
"description": "GraysQL is a GraphQL manager and loader.",
"main": "index.js",
"scripts": {
"test": "npm run lint && mocha --check-leaks -t 5000 test/index.js",
"cover": "npm run lint && istanbul cover _mocha -- --check-leaks -t 5000 -b -R spec test/index.js",
"lint": "eslint index.js lib/"
},
"keywords": [
"graphql"
],
"author": "Lorenzo Ruiz <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/larsbs/graysql.git"
},
"peerDependencies": {
"graphql": "^0.4.14",
"graphql-relay": "^0.3.6"
},
"devDependencies": {
"chai": "^3.4.1",
"eslint": "^1.10.3",
"graphql": "^0.4.14",
"graphql-relay": "^0.3.6",
"istanbul": "^0.4.2",
"mocha": "^2.3.4"
},
"dependencies": {}
}