graphbrainz/package.json

94 lines
2.7 KiB
JSON
Raw Permalink Normal View History

2016-08-08 07:54:06 +00:00
{
"name": "graphbrainz",
2016-12-02 08:50:37 +00:00
"version": "3.0.1",
"description": "An Express server and middleware for querying the MusicBrainz API using GraphQL.",
2016-08-20 05:59:32 +00:00
"main": "lib/index.js",
2016-11-26 02:18:41 +00:00
"bin": "lib/index.js",
2016-11-26 01:38:32 +00:00
"files": [
"lib",
"scripts",
"Procfile",
"schema.json",
"yarn.lock"
2016-11-26 01:38:32 +00:00
],
2016-08-20 05:59:32 +00:00
"engines": {
"node": ">=4.3.0",
"npm": ">=3.8.0"
2016-08-20 05:59:32 +00:00
},
2016-08-08 07:54:06 +00:00
"scripts": {
2016-11-26 02:18:41 +00:00
"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",
2016-11-29 03:33:52 +00:00
"build:docs:types": "babel-node scripts/render-types.js > docs/types.md",
2016-08-08 07:54:06 +00:00
"build:lib": "babel --out-dir lib src",
"clean": "npm run clean:lib",
"clean:lib": "rm -rf lib",
"check": "npm run lint && npm run test",
2016-08-20 05:59:32 +00:00
"deploy": "./scripts/deploy.sh",
2016-08-08 07:54:06 +00:00
"lint": "standard --verbose | snazzy",
"prepublish": "npm run clean && npm run check && npm run build",
2016-08-20 05:59:32 +00:00
"print-schema": "babel-node scripts/print-schema.js",
2016-11-26 01:38:32 +00:00
"print-schema:json": "npm run print-schema -- --json",
"print-schema:md": "printf '```graphql\\n%s\\n```' \"$(npm run -s print-schema)\"",
2016-08-08 07:54:06 +00:00
"start": "node lib/index.js",
"start:dev": "nodemon --exec babel-node src/index.js",
"test": "mocha --compilers js:babel-register",
"update-schema": "npm run -s print-schema:json > schema.json"
2016-08-08 07:54:06 +00:00
},
2016-11-26 10:57:34 +00:00
"keywords": [
"musicbrainz",
"graphql",
"api",
"express",
"middleware",
"relay"
],
2016-08-08 07:54:06 +00:00
"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": {
"chalk": "^1.1.3",
2016-11-26 01:38:32 +00:00
"compression": "^1.6.2",
2016-08-08 07:54:06 +00:00
"dashify": "^0.2.2",
"dataloader": "^1.2.0",
2016-11-26 01:38:32 +00:00
"debug": "^2.3.3",
"dotenv": "^2.0.0",
"es6-error": "^4.0.0",
2016-08-08 07:54:06 +00:00
"express": "^4.14.0",
2016-11-26 01:38:32 +00:00
"express-graphql": "^0.6.1",
"graphql": "^0.8.2",
"graphql-relay": "^0.4.4",
"lru-cache": "^4.0.1",
2016-08-31 06:33:29 +00:00
"pascalcase": "^0.1.1",
2016-11-26 01:38:32 +00:00
"qs": "^6.3.0",
"request": "^2.79.0",
2016-09-01 04:31:48 +00:00
"retry": "^0.10.0"
2016-08-08 07:54:06 +00:00
},
"devDependencies": {
2016-11-26 01:38:32 +00:00
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
2016-08-08 07:54:06 +00:00
"chai": "^3.5.0",
2016-11-26 02:18:41 +00:00
"doctoc": "^1.2.0",
"marked": "^0.3.6",
2016-11-26 01:38:32 +00:00
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"snazzy": "^5.0.0",
"standard": "^8.6.0"
2016-08-08 07:54:06 +00:00
},
"standard": {
"parser": "babel-eslint"
}
}