graphbrainz/package.json

144 lines
4.3 KiB
JSON
Raw Permalink Normal View History

2016-08-08 07:54:06 +00:00
{
"name": "graphbrainz",
2018-08-16 03:22:16 +00:00
"version": "8.0.3",
"description": "A GraphQL schema, Express server, and middleware for querying the MusicBrainz.",
2016-08-20 05:59:32 +00:00
"main": "lib/index.js",
2017-05-16 04:28:54 +00:00
"bin": "cli.js",
2016-11-26 01:38:32 +00:00
"files": [
"extensions",
2016-11-26 01:38:32 +00:00
"lib",
"scripts",
2017-05-16 05:02:25 +00:00
"src",
2017-05-16 05:04:34 +00:00
".babelrc",
2017-05-16 04:28:54 +00:00
"cli.js",
2016-11-26 01:38:32 +00:00
"Procfile",
"schema.json",
"yarn.lock"
2016-11-26 01:38:32 +00:00
],
2016-08-20 05:59:32 +00:00
"engines": {
"node": ">=8.10.0",
"npm": ">=5.2.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 && npm run build:docs:extensions",
"build:docs:extensions": "babel-node scripts/build-extension-docs.js",
"build:docs:readme": "doctoc --notitle README.md docs/extensions/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 ./src/schema.js --require babel-register --no-title --update-file 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",
2016-08-20 05:59:32 +00:00
"deploy": "./scripts/deploy.sh",
"format": "npm run lint:fix",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
2017-05-16 04:38:55 +00:00
"postinstall": "postinstall-build lib --script build:lib",
"prepublish": "npm run clean:lib && npm run build:lib",
2016-12-21 02:04:08 +00:00
"preversion": "npm run update-schema && npm run build:docs && git add schema.json docs",
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",
2016-12-07 08:23:02 +00:00
"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 --concurrency 1",
2016-12-07 08:23:02 +00:00
"test:watch": "npm run test:only -- --watch",
"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": {
"babel-runtime": "^6.25.0",
"compression": "^1.7.3",
"cors": "^2.8.4",
2017-12-09 07:35:10 +00:00
"dashify": "^1.0.0",
"dataloader": "^1.4.0",
"debug": "^3.0.0",
"dotenv": "^6.0.0",
"es6-error": "^4.1.1",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2",
"graphql-relay": "^0.5.5",
"graphql-tools": "^3.1.1",
"lru-cache": "^4.1.3",
2016-08-31 06:33:29 +00:00
"pascalcase": "^0.1.1",
"postinstall-build": "^5.0.1",
"qs": "^6.5.2",
"request": "^2.87.0",
"retry": "^0.12.0"
2016-08-08 07:54:06 +00:00
},
"devDependencies": {
"ava": "^0.25.0",
2017-04-11 06:34:11 +00:00
"babel-cli": "^6.24.1",
"babel-eslint": "^8.2.6",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
2017-03-19 07:48:30 +00:00
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
2017-04-11 06:34:11 +00:00
"babel-register": "^6.24.1",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"doctoc": "^1.3.1",
"eslint": "^5.3.0",
2017-12-09 07:35:10 +00:00
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"graphql-markdown": "^4.0.0",
"nodemon": "^1.18.3",
"nyc": "^12.0.2",
"prettier": "^1.14.0",
"replayer": "^2.2.3",
2017-03-19 07:48:30 +00:00
"rimraf": "^2.6.1",
"sinon": "^6.1.4"
2016-08-08 07:54:06 +00:00
},
"standard": {
"parser": "babel-eslint"
2016-12-07 08:23:02 +00:00
},
"ava": {
"require": [
"dotenv/config",
2016-12-07 08:23:02 +00:00
"babel-register"
]
},
"nyc": {
"include": [
"src/**"
],
"reporter": [
"lcov",
"text"
],
"all": true,
"cache": true,
"sourceMap": false,
"instrument": false
2016-08-08 07:54:06 +00:00
}
}