graphql-2-json-schema
Version:
`graphql-2-json-schema` package
55 lines (54 loc) • 1.32 kB
JSON
{
"name": "graphql-2-json-schema",
"version": "0.9.1",
"main": "dist/index.js",
"repository": "git@github.com:wittydeveloper/graphql-to-json-schema.git",
"author": "Charly POLY <cpoly55@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=8"
},
"dependencies": {
"json5": "^2.2.0",
"lodash": "^4.17.20"
},
"scripts": {
"test": "jest",
"test:watch": "nodemon -x 'npm run test'",
"prettier:check": "prettier -c \"**/*.ts\"",
"prettier:format": "prettier -w \"**/*.ts\"",
"generateReadmeExample": "npx ts-node doc-exampleGenerator.ts",
"prepare": "npx tsc"
},
"devDependencies": {
"@types/ajv": "1.0.0",
"@types/jest": "26.0.20",
"@types/json-schema": "7.0.6",
"@types/lodash": "4.14.168",
"@types/node": "14.14.21",
"ajv": "7.0.3",
"graphql": "15.4.0",
"jest": "26.6.3",
"nodemon": "2.0.12",
"prettier": "2.2.1",
"standard-version": "9.1.0",
"ts-jest": "26.4.4",
"tslint": "5.20.1",
"typescript": "4.1.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/([^\\.d]*)|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}