graphql-validity
Version:
Make business logic validation easy on the graphql side without adding any declarations or modifications to the existing graphql schema.
62 lines (61 loc) • 1.83 kB
JSON
{
"name": "graphql-validity",
"version": "0.10.12",
"description": "Make business logic validation easy on the graphql side without adding any declarations or modifications to the existing graphql schema.",
"main": "index.js",
"scripts": {
"clean:dts": "find . -name '*.d.ts' -not -wholename '*node_modules*' -not -wholename '*examples*' -type f -delete",
"clean:map": "find . -name '*.js.map' -not -wholename '*node_modules*' -not -wholename '*examples*' -type f -delete",
"clean:js": "find . -name '*.js' -not -wholename '*node_modules*' -not -wholename '*examples*' -type f -delete",
"clean:test": "rm -rf .nyc_output coverage",
"clean": "npm run clean:test && npm run clean:dts && npm run clean:map && npm run clean:js",
"build": "tsc && npm test",
"test": "tsc && nyc mocha"
},
"keywords": [
"graphql",
"errors",
"validation"
],
"repository": {
"type": "git",
"url": "git@github.com:MeetmeLeave/graphql-validity.git"
},
"bugs": {
"url": "https://github.com/MeetmeLeave/graphql-validity/issues"
},
"homepage": "https://github.com/MeetmeLeave/graphql-validity",
"author": "Vlad Martynenko <vladimir.martynenko.work@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/chai": "4.1.7",
"@types/mocha": "5.2.7",
"@types/mock-require": "2.0.0",
"@types/node": "12.6.3",
"@types/sinon": "7.0.13",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"mocha": "5.2.0",
"nyc": "14.1.1",
"sinon": "7.3.2",
"source-map-support": "0.5.12",
"ts-node": "8.3.0",
"typescript": "3.5.3"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/test/**"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"html"
]
}
}