Skip to main content
Module

x/graphql_ts/package.json

A reference implementation of GraphQL for JavaScript
Go to Latest
File
{ "name": "graphql", "version": "0.5.0-beta.1", "description": "A Query Language and Runtime which can target any service.", "contributors": [ "Lee Byron <lee@leebyron.com> (http://leebyron.com/)", "Nicholas Schrock <schrockn@fb.com>", "Daniel Schafer <dschafer@fb.com>" ], "license": "BSD-3-Clause", "main": "index.js", "homepage": "https://github.com/graphql/graphql-js", "bugs": { "url": "https://github.com/graphql/graphql-js/issues" }, "repository": { "type": "git", "url": "http://github.com/graphql/graphql-js.git" }, "options": { "mocha": "--require ./resources/mocha-bootload --check-leaks --full-trace src/**/__tests__/**/*-test.js" }, "babel": { "presets": [ "es2015" ], "plugins": [ "syntax-async-functions", "transform-class-properties", "transform-flow-strip-types", "transform-object-rest-spread", "transform-regenerator", "transform-runtime" ] }, "scripts": { "test": "npm run lint && npm run check && npm run testonly", "testonly": "babel-node ./node_modules/.bin/_mocha $npm_package_options_mocha", "t": "babel-node ./node_modules/.bin/_mocha --require ./resources/mocha-bootload", "lint": "eslint src", "check": "flow check", "check-cover": "for file in {src/*.js,src/**/*.js}; do echo $file; flow coverage $file; done", "build": "babel src --ignore __tests__ --out-dir dist/ && cp package.json dist/", "watch": "babel-node ./resources/watch.js", "cover": "babel-node ./node_modules/.bin/isparta cover --root src --report html _mocha -- $npm_package_options_mocha", "cover:lcov": "babel-node ./node_modules/.bin/isparta cover --root src --report lcovonly _mocha -- $npm_package_options_mocha", "preversion": ". ./resources/checkgit.sh && npm test", "prepublish": ". ./resources/prepublish.sh" }, "dependencies": { "babel-runtime": ">=6.0.0" }, "devDependencies": { "babel-cli": "6.6.5", "babel-eslint": "6.0.0-beta.5", "babel-plugin-syntax-async-functions": "6.5.0", "babel-plugin-transform-class-properties": "6.6.0", "babel-plugin-transform-flow-strip-types": "6.7.0", "babel-plugin-transform-object-rest-spread": "6.6.5", "babel-plugin-transform-regenerator": "6.6.5", "babel-plugin-transform-runtime": "6.6.0", "babel-preset-es2015": "6.6.0", "chai": "3.5.0", "chai-subset": "1.2.2", "coveralls": "2.11.9", "eslint": "2.2.0", "eslint-plugin-babel": "3.1.0", "flow-bin": "0.20.1", "isparta": "4.0.0", "mocha": "2.4.5", "sane": "1.3.3" }}