├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── index.js ├── lib ├── __tests__ │ └── index.js └── index.js ├── package.json └── scripts ├── mocha_runner.js └── prepublish.sh /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-2"] 3 | } -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadirahq/graphql-errors/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadirahq/graphql-errors/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadirahq/graphql-errors/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadirahq/graphql-errors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadirahq/graphql-errors/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/index'); -------------------------------------------------------------------------------- /lib/__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadirahq/graphql-errors/HEAD/lib/__tests__/index.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadirahq/graphql-errors/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadirahq/graphql-errors/HEAD/package.json -------------------------------------------------------------------------------- /scripts/mocha_runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadirahq/graphql-errors/HEAD/scripts/mocha_runner.js -------------------------------------------------------------------------------- /scripts/prepublish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadirahq/graphql-errors/HEAD/scripts/prepublish.sh --------------------------------------------------------------------------------