Skip to main content
Module

x/graphql_ts/package.json

A reference implementation of GraphQL for JavaScript
Latest
File
{ "name": "graphql", "version": "15.0.0", "description": "A Query Language and Runtime which can target any service.", "license": "MIT", "private": true, "main": "index", "module": "index.mjs", "types": "index.d.ts", "sideEffects": false, "homepage": "https://github.com/graphql/graphql-js", "bugs": { "url": "https://github.com/graphql/graphql-js/issues" }, "repository": { "type": "git", "url": "https://github.com/graphql/graphql-js.git" }, "keywords": [ "graphql", "graphql-js" ], "engines": { "node": ">= 10.x" }, "scripts": { "test": "npm run prettier:check && npm run lint && npm run check && npm run testonly && npm run check:ts && npm run check:spelling", "test:ci": "yarn check --integrity && npm run prettier:check && npm run lint -- --no-cache && npm run check && npm run testonly:cover && npm run check:ts && npm run check:spelling && npm run build", "testonly": "mocha --full-trace src/**/__tests__/**/*-test.js", "testonly:cover": "nyc npm run testonly", "lint": "eslint --cache --ext .js,.ts src resources", "benchmark": "node --noconcurrent_sweeping --expose-gc --predictable ./resources/benchmark.js", "prettier": "prettier --ignore-path .gitignore --write --list-different \"**/*.{js,ts,md,json,yml}\"", "prettier:check": "prettier --ignore-path .gitignore --check \"**/*.{js,ts,md,json,yml}\"", "check": "flow check", "check:ts": "dtslint src", "check:cover": "node resources/check-cover.js && nyc report --nycrc-path .nycflowrc.yml", "check:spelling": "cspell \"./{src/**/,resources**/,}*.{js,ts,md,graphql}\"", "build": "node resources/build.js", "changelog": "node resources/gen-changelog.js", "preversion": ". ./resources/checkgit.sh && yarn check --integrity", "version": "node resources/gen-version.js && npm test && git add src/version.js", "gitpublish": ". ./resources/gitpublish.sh" }, "dependencies": {}, "devDependencies": { "@babel/core": "7.9.0", "@babel/plugin-transform-flow-strip-types": "7.9.0", "@babel/preset-env": "7.9.0", "@babel/register": "7.9.0", "@typescript-eslint/eslint-plugin": "2.26.0", "@typescript-eslint/parser": "2.26.0", "babel-eslint": "10.1.0", "chai": "4.2.0", "cspell": "4.0.55", "dtslint": "3.4.1", "eslint": "6.8.0", "eslint-plugin-flowtype": "4.7.0", "eslint-plugin-graphql-internal": "link:./resources/eslint-rules", "eslint-plugin-import": "2.20.2", "flow-bin": "0.121.0", "mocha": "7.1.1", "nyc": "15.0.0", "prettier": "2.0.2", "typescript": "^3.8.3" }}