-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "graphql-jay-hyperschema",
"description": "GraphQL Jay adapter for JSON Hyper-Schema (draft-04)",
"version": "0.1.0",
"author": "mateusmaso",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.0.2",
"babel-cli": "^6.14.0",
"babel-register": "^6.14.0",
"babel-preset-es2015": "^6.5.0",
"graphql": "^0.7.2",
"graphql-jay": "^0.1.0",
"express": "^4.13.4",
"morgan": "^1.7.0",
"body-parser": "^1.15.1",
"cors": "^2.7.1"
},
"dependencies": {
"clone": "^1.0.2",
"isomorphic-fetch": "^2.2.1",
"json-schema-ref-parser": "^3.1.2",
"uuid": "^2.0.3",
"traverse": "^0.6.6",
"uri-template": "^1.0.1",
"bluebird": "^3.4.6",
"deep-equal": "^1.0.1"
},
"repository": {
"type": "git",
"url": "http://github.com/mateusmaso/graphql-jay-hyperschema"
},
"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"
}