UNPKG

graphql-type-ints

Version:
90 lines (89 loc) 2.17 kB
{ "author": { "name": "amosyuen", "email": "amosyuen@gmail.com" }, "bugs": { "url": "https://github.com/amosyuen/graphql-type-ints/issues" }, "bundleDependencies": false, "deprecated": false, "description": "Library for different graphql int types", "devDependencies": { "@babel/cli": "^7.2.3", "@babel/plugin-syntax-bigint": "^7.2.0", "@babel/preset-env": "^7.16.11", "eslint": "^8.7.0", "eslint-config-airbnb": "^19.0.4", "eslint-config-prettier": "^8.3.0", "eslint-plugin-babel": "^5.3.0", "eslint-plugin-import": "^2.16.0", "eslint-plugin-jest": "^26.0.0", "eslint-plugin-json": "^3.1.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^6.0.0", "graphql": "^16.3.0", "husky": "^7.0.4", "jest": "^27.4.7", "lint-staged": "^12.3.2", "prettier": "^2.5.1", "rimraf": "^3.0.2" }, "engines": { "node": ">=10.4.0" }, "homepage": "https://github.com/amosyuen/graphql-type-ints#readme", "husky": { "hooks": { "pre-commit": "yarn run lint-staged && yarn test" } }, "keywords": [ "bigint", "graphql", "int", "int8", "int16", "int32", "int64", "long", "number", "scalar", "type", "uint", "uint8", "uint16", "uint32", "uint64", "unsigned" ], "license": "MIT", "lint-staged": { "*.{js,json}": [ "eslint --fix", "prettier --list-different --write", "git add" ] }, "main": "dist/index.js", "name": "graphql-type-ints", "peerDependencies": { "graphql": ">=0.13.0" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/amosyuen/graphql-type-ints.git" }, "scripts": { "clean": "rimraf dist", "build": "yarn clean && yarn babel src -d dist --ignore 'src/**/__mocks__,src/**/__tests__,src/**/*.spec.js','src/**/*.test.js'", "lint": "eslint **/*.{js,json}", "lint:fix": "yarn lint --fix & prettier --list-different --write **/*.{js,json}", "prepublishOnly": "yarn build", "test": "yarn jest" }, "version": "1.0.2", "dependencies": { "graphql-type-ints": "^1.0.1" } }