UNPKG

tempus-api-graphql

Version:

A GraphQL wrapper for the tempus api (tempus2.xyz)

57 lines (56 loc) 1.39 kB
{ "name": "tempus-api-graphql", "version": "0.5.2", "description": "A GraphQL wrapper for the tempus api (tempus2.xyz)", "main": "dist/schema.js", "scripts": { "test": "npm run build && jest", "graphiql": "npm run build && node ./scripts/graphiql.js", "dump-sdl": "npm run build && node ./scripts/dump_sdl.js", "build": "babel lib -d dist", "prepare": "npm run build", "lint": "eslint .", "format": "prettier . --write" }, "keywords": [ "tempus", "api", "graphql" ], "author": "Aris Poloway", "type": "commonjs", "license": "MIT", "files": [ "dist/" ], "repository": { "type": "git", "url": "https://github.com/arispoloway/tempus-api-graphql.git" }, "jest": { "testPathIgnorePatterns": [ "lib" ] }, "dependencies": { "axios": "^0.21.1", "graphql": "^15.3.0", "lru-cache": "^6.0.0", "regenerator-runtime": "^0.13.7" }, "devDependencies": { "@babel/cli": "^7.10.5", "@babel/core": "^7.10.5", "@babel/node": "^7.10.5", "@babel/preset-env": "^7.10.4", "eslint": "^7.6.0", "eslint-config-airbnb-base": "^14.2.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-import": "^2.22.0", "eslint-plugin-prettier": "^3.1.4", "express": "^4.17.1", "express-graphql": "^0.11.0", "jest": "^26.2.2", "prettier": "^2.0.5" } }