willwill96-petfinder-graphql
Version:
contains files and utilities to bootstrap a graphql instance wrapping the petfinder api
46 lines • 1.47 kB
JSON
{
"name": "willwill96-petfinder-graphql",
"version": "1.0.2",
"description": "contains files and utilities to bootstrap a graphql instance wrapping the petfinder api",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"prebuild": "rm -rf dist/",
"build": "tsc",
"copy:graphql": "cp src/schema/schema.graphql dist/schema/schema.graphql",
"copy:package": "cp package.json dist/package.json",
"copy:readme": "cp README.md dist/README.md",
"copy:changelog": "cp CHANGELOG.md dist/CHANGELOG.md",
"postbuild": "npm run copy:graphql && npm run copy:package && npm run copy:readme && npm run copy:changelog",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willwill96/petfinder-api-apps.git"
},
"keywords": [
"petfinder"
],
"author": "William Will @willwill96",
"license": "ISC",
"bugs": {
"url": "https://github.com/willwill96/petfinder-api-apps/issues"
},
"homepage": "https://github.com/willwill96/petfinder-api-apps#readme",
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"node-cache": "^5.1.2",
"query-string": "^7.1.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.4.0",
"@graphql-codegen/typescript-operations": "^2.2.2",
"graphql": "^15.8.0",
"graphql-tools": "^8.2.0",
"standard-version": "^9.3.2",
"typescript": "^4.5.5"
}
}