{ "name": "graphbrainz", "version": "5.1.3", "description": "An Express server and middleware for querying the MusicBrainz API using GraphQL.", "main": "lib/index.js", "bin": "cli.js", "files": [ "lib", "scripts", "src", "cli.js", "Procfile", "schema.json", "yarn.lock" ], "engines": { "node": ">=4.6.0", "npm": ">=3.8.0" }, "scripts": { "build": "npm run build:lib && npm run update-schema && npm run build:docs", "build:docs": "npm run build:docs:readme && npm run build:docs:schema && npm run build:docs:types", "build:docs:readme": "doctoc --title \"## Contents\" README.md", "build:docs:schema": "printf '# GraphQL Schema\\n\\n%s\n' \"$(npm run -s print-schema:md)\" > docs/schema.md", "build:docs:types": "graphql-markdown --require babel-register --prologue 'You may also be interested in reading the [schema in GraphQL syntax](schema.md).' ./src/schema.js > docs/types.md", "build:lib": "babel --out-dir lib src", "clean": "npm run clean:lib", "clean:lib": "rm -rf lib", "deploy": "./scripts/deploy.sh", "lint": "standard --verbose | snazzy", "lint:fix": "standard --verbose --fix", "postinstall": "postinstall-build lib --script build:lib", "prepublish": "npm run clean:lib && npm run build:lib", "preversion": "npm run update-schema && npm run build:docs && git add schema.json docs", "print-schema": "babel-node scripts/print-schema.js", "print-schema:json": "npm run print-schema -- --json", "print-schema:md": "printf '```graphql\\n%s\\n```' \"$(npm run -s print-schema)\"", "start": "node lib/index.js", "start:dev": "nodemon --exec babel-node src/index.js", "test": "npm run lint && npm run test:coverage", "test:coverage": "cross-env NODE_ENV=test nyc npm run test:only", "test:only": "cross-env VCR_MODE=playback ava", "test:record": "cross-env VCR_MODE=record ava", "test:record-new": "cross-env VCR_MODE=cache ava --serial", "test:watch": "npm run test:only -- --watch", "update-schema": "npm run -s print-schema:json > schema.json" }, "keywords": [ "musicbrainz", "graphql", "api", "express", "middleware", "relay" ], "homepage": "https://github.com/exogen/graphbrainz", "author": { "name": "Brian Beck", "email": "exogen@gmail.com", "url": "http://brianbeck.com/" }, "repository": { "type": "git", "url": "https://github.com/exogen/graphbrainz.git" }, "license": "MIT", "dependencies": { "babel-runtime": "^6.23.0", "compression": "^1.6.2", "dashify": "^0.2.2", "dataloader": "^1.3.0", "debug": "^2.6.6", "dotenv": "^4.0.0", "es6-error": "^4.0.2", "express": "^4.15.2", "express-graphql": "^0.6.4", "graphql": "^0.9.4", "graphql-relay": "^0.5.1", "lru-cache": "^4.0.1", "pascalcase": "^0.1.1", "postinstall-build": "^5.0.0", "qs": "^6.4.0", "request": "^2.81.0", "retry": "^0.10.1" }, "devDependencies": { "ava": "^0.19.1", "babel-cli": "^6.24.1", "babel-eslint": "^7.2.3", "babel-plugin-istanbul": "^4.1.1", "babel-plugin-transform-runtime": "^6.23.0", "babel-preset-es2015": "^6.24.1", "babel-preset-stage-2": "^6.24.1", "babel-register": "^6.24.1", "coveralls": "^2.13.1", "cross-env": "^4.0.0", "doctoc": "^1.3.0", "graphql-markdown": "^2.1.0", "nodemon": "^1.11.0", "nyc": "^10.2.0", "rimraf": "^2.6.1", "sepia": "^2.0.2", "sinon": "^2.1.0", "snazzy": "^7.0.0", "standard": "^10.0.2" }, "standard": { "parser": "babel-eslint" }, "ava": { "require": [ "babel-register" ] }, "nyc": { "include": [ "src/**" ], "reporter": [ "lcov", "text" ], "all": true, "cache": true, "sourceMap": false, "instrument": false } }