@entria/graphql-mongoose-loader
Version:
GraphQL Mongoose Loader helpers
107 lines (106 loc) • 3.37 kB
JSON
{
"name": "@entria/graphql-mongoose-loader",
"description": "GraphQL Mongoose Loader helpers",
"version": "4.4.0",
"author": {
"name": "Entria",
"email": "dev@entria.com.br",
"url": "https://github.com/entria"
},
"devDependencies": {
"@babel/cli": "7.16.8",
"@babel/core": "7.16.7",
"@babel/node": "7.16.8",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-export-default-from": "7.16.7",
"@babel/plugin-proposal-export-namespace-from": "7.16.7",
"@babel/plugin-proposal-object-rest-spread": "7.16.7",
"@babel/plugin-syntax-async-generators": "7.8.4",
"@babel/plugin-transform-async-to-generator": "7.16.8",
"@babel/preset-env": "7.16.8",
"@babel/preset-flow": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@commitlint/cli": "16.0.2",
"@commitlint/config-conventional": "16.0.0",
"@types/graphql-relay": "0.7.0",
"@types/jest": "27.4.0",
"@types/mongoose": "^5.11.97",
"babel-eslint": "10.1.0",
"babel-jest": "27.4.6",
"babel-plugin-jest-hoist": "27.4.0",
"dataloader": "2.0.0",
"eslint": "8.6.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-typescript": "0.14.0",
"graphql": "16.2.0",
"graphql-relay": "0.10.0",
"jest": "27.4.7",
"jest-cli": "27.4.7",
"lint-staged": "12.1.7",
"mongodb": "^4.3.0",
"mongodb-memory-server": "8.1.0",
"mongoose": "6.1.6",
"prettier": "2.5.1",
"tslint": "6.1.3",
"typescript": "4.5.4"
},
"homepage": "https://github.com/entria/graphql-mongoose-loader",
"jsnext:main": "src/index.js",
"keywords": [
"graphql",
"loader",
"mongoose"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"prettier --write --single-quote true --trailing-comma all --print-width 100",
"eslint --fix",
"git add"
],
"*.ts": [
"yarn prettier",
"tslint --fix",
"git add"
]
},
"main": "lib/index.js",
"module": "src/index.js",
"peerDependencies": {
"graphql": "*",
"graphql-relay": "*",
"mongoose": "*"
},
"pre-commit": "lint:staged",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/entria/graphql-mongoose-loader"
},
"resolutions": {
"mongodb": "^4.3.0"
},
"scripts": {
"build": "npm run build:babel && npm run build:ts",
"build:babel": "rm -rf lib/* && babel src --extensions \".es6,.js,.es,.mjs,.ts\" --ignore src/**/*.spec.ts,src/**/*.test.ts --out-dir lib --copy-files --source-maps --verbose",
"build:ts": "tsc -p tsconfig.base.json",
"check": "npm run test",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint src/**",
"lint:staged": "lint-staged",
"precommit": "yarn lint:staged",
"prepare": "npm run build",
"prepublish": "npm run build",
"release:major": "npm run check && npm version major && git push --follow-tags",
"release:minor": "npm run check && npm version minor && git push --follow-tags",
"release:patch": "npm run check && npm version patch && git push --follow-tags",
"test": "jest",
"test:watch": "jest --watch --coverage",
"tslint": "tslint -p tsconfig.json"
},
"typings": "lib/index.d.ts"
}