-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.15 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
43
44
45
46
47
48
49
50
{
"name": "graphql-jay",
"description": "GraphQL schema generator for composing Web APIs",
"version": "0.1.0",
"author": "mateusmaso",
"license": "MIT",
"keywords": [
"graphql",
"rest",
"json",
"json-rpc",
"json-schema",
"json-hyper-schema"
],
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.0.2",
"babel-cli": "^6.14.0",
"babel-register": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"express": "^4.13.4",
"express-graphql": "^0.5.4",
"morgan": "^1.7.0",
"body-parser": "^1.15.1",
"cors": "^2.7.1",
"browserify": "^13.1.0"
},
"dependencies": {
"graphql": "^0.7.2",
"deep-assign": "^2.0.0",
"clone": "^1.0.2",
"traverse": "^0.6.6",
"keypath": "^0.0.1",
"isomorphic-fetch": "^2.2.1"
},
"repository": {
"type" : "git",
"url": "http://github.com/mateusmaso/graphql-jay"
},
"scripts": {
"build": "babel src --out-dir lib",
"pretest": "npm run build",
"test": "node test/server & mocha --require babel-register",
"posttest": "lsof -t -i tcp:8080 | xargs kill"
},
"engines": {
"node" : "~7.3.0"
},
"main": "lib/index.js"
}