graphql-custom-types
Version:
Collection of custom GraphQL types like Email, URL, password and many more
39 lines (38 loc) • 1.16 kB
JSON
{
"name": "graphql-custom-types",
"repository": "stylesuxx/graphql-custom-types",
"version": "1.7.0",
"description": "Collection of custom GraphQL types like Email, URL, password and many more",
"author": "Chris Landa <stylesuxx@gmail.com>",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib",
"build": "npm run clean && ./node_modules/.bin/babel src --out-dir lib",
"test": "npm run build && ./node_modules/.bin/babel-node ./tests/index.js",
"lint": "./node_modules/.bin/eslint src tests",
"prepublish": "npm run build",
"preversion": "npm test"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/node": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-eslint": "^10.1.0",
"eslint": "^7.0.0",
"tape": "^4.11.0"
},
"peerDependencies": {
"graphql": "^0.6.0 || ^0.7.0 || ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"keywords": [
"GraphQL",
"express-graphql",
"GraphQL types"
],
"engines": {
"node": ">= 6.9"
},
"types": "./index.d.ts"
}