UNPKG

hasura-node-types

Version:

Add Hasura types, event trigger and action wrapper for common web frameworks

77 lines 2.05 kB
{ "name": "hasura-node-types", "version": "0.2.1", "description": "Add Hasura types, event trigger and action wrapper for common web frameworks", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "build": "npm run clean && npm run lint && tsc", "test": "jest", "clean": "rm -rf lib && rm -rf .nyc_output && rm -rf coverage", "lint": "eslint --ext .js,.ts src", "example": "ts-node example/index.ts", "prepare": "npm run build", "prepublishOnly": "npm run lint && npm test", "version": "git add -A src", "postversion": "git push && git push --tags" }, "author": "Toan Nguyen", "license": "MIT", "devDependencies": { "@types/jest": "^27.4.1", "@types/node": "^17.0.21", "@types/supertest": "^2.0.11", "@types/winston": "^2.4.4", "@typescript-eslint/eslint-plugin": "^5.15.0", "@typescript-eslint/parser": "^5.15.0", "eslint": "^8.11.0", "eslint-import-resolver-typescript": "^2.5.0", "eslint-plugin-import": "^2.25.4", "express": "^4.17.3", "jest": "^27.5.1", "supertest": "^6.2.2", "ts-jest": "^27.1.3", "ts-node": "^10.7.0", "typescript": "^4.0.5", "winston": "^3.6.0" }, "dependencies": { "@types/express": "latest", "@types/express-serve-static-core": "latest" }, "peerDependencies": { "express": "*" }, "repository": { "type": "git", "url": "git+https://github.com/hgiasac/hasura-node-types.git" }, "keywords": [ "hasura", "typescript", "express", "action", "event" ], "bugs": { "url": "https://github.com/hgiasac/hasura-node-types/issues" }, "homepage": "https://github.com/hgiasac/hasura-node-types#readme", "jest": { "transform": { "^.+\\.tsx?$": "ts-jest" }, "bail": true, "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json", "node" ], "testEnvironment": "node", "collectCoverage": true } }