{ "name": "@drmercer/lentils", "version": "0.0.5", "author": "Dan Mercer", "license": "MIT", "description": "A hodge-podge of useful TypeScript", "repository": { "type": "git", "url": "git+https://github.com/drmercer/lentils.git" }, "bugs": { "url": "https://github.com/drmercer/lentils/issues" }, "homepage": "https://github.com/drmercer/lentils#readme", "scripts": { "build": "yarn ts:esm && yarn ts:cjs", "clean": "git clean -dfx cjs/ esm/", "preversion": "yarn clean && yarn build && yarn test", "prepack": "yarn preversion", "test": "yarn test:unit && yarn test:integration", "test:unit": "jest", "test:integration": "test/test.sh", "ts:esm": "tsc --project tsconfig.json", "ts:cjs": "tsc --project tsconfig.cjs.json" }, "gitHooks": { "pre-commit": "scripts/pre-commit.sh" }, "devDependencies": { "@drmercer/injector": "^0.1.2", "@types/jest": "^26.0.10", "@types/markdown-it": "^12.0.1", "@types/turndown": "^5.0.0", "jest": "^26.4.2", "markdown-it": "^12.0.6", "reflect-metadata": "^0.1.13", "ts-jest": "^26.2.0", "tslib": "^2.0.3", "turndown": "^7.0.0", "typescript": "^4.0.5", "yorkie": "^2.0.0" }, "jest": { "globals": { "ts-jest": { "tsconfig": "./tsconfig.jest.json" } }, "transform": { ".ts": "ts-jest" }, "testRegex": "\\.spec\\.(ts|tsx)$", "moduleFileExtensions": [ "ts", "js" ] }, "files": [ "cjs/", "esm/" ] }