UNPKG

core-types

Version:

Generic type declarations for e.g. TypeScript, GraphQL and JSON Schema

81 lines (80 loc) 1.78 kB
{ "name": "core-types", "version": "3.1.0", "description": "Generic type declarations for e.g. TypeScript, GraphQL and JSON Schema", "author": "Gustaf Räntilä", "license": "MIT", "bugs": { "url": "https://github.com/grantila/core-types/issues" }, "homepage": "https://github.com/grantila/core-types#readme", "main": "./dist/index.js", "types": "./dist/index.d.ts", "directories": {}, "type": "module", "sideEffects": false, "engines": { "node": ">=14.13.1 || >=16.0.0" }, "files": [ "dist" ], "scripts": { "build": "rimraf dist && tsc -p tsconfig.prod.json", "test": "NODE_OPTIONS=--experimental-vm-modules jest --coverage", "cz": "git-cz" }, "pre-commit": [ "build", "test" ], "repository": { "type": "git", "url": "https://github.com/grantila/core-types" }, "keywords": [ "type", "types", "generic", "typescript", "graphql", "json", "schema" ], "devDependencies": { "@babel/preset-env": "^7.21.4", "@babel/preset-typescript": "^7.21.4", "@types/jest": "^29.5.0", "cz-conventional-changelog": "^3.3.0", "jest": "^29.5.0", "pre-commit": "^1.2.2", "rimraf": "^4.4.1", "ts-jest-resolver": "^2.0.1", "typescript": "5.0.3" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "jest": { "resolver": "ts-jest-resolver", "extensionsToTreatAsEsm": [ ".ts" ], "testEnvironment": "node", "coverageReporters": [ "lcov", "text", "html" ], "collectCoverageFrom": [ "<rootDir>/lib/**" ], "coveragePathIgnorePatterns": [ "/node_modules/", "/__snapshots__/" ] }, "packageManager": "yarn@3.2.4" }