github-pages-deploy-action/node_modules/ts-jest/package.json
James Ives 5af4d9fc85 3.5.0 🎉
2020-05-14 17:33:08 -04:00

140 lines
4.4 KiB
JSON

{
"name": "ts-jest",
"version": "25.5.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "cli.js",
"description": "A preprocessor with source maps support to help use TypeScript with Jest",
"scripts": {
"prebuild": "node scripts/clean-dist.js",
"build": "tsc -p tsconfig.build.json",
"postbuild": "node scripts/post-build.js",
"build:watch": "tsc -p tsconfig.build.json -w",
"clean": "node scripts/clean.js",
"pretest": "npm run lint",
"test": "run-s -s test:e2e \"test:unit -- {@}\" --",
"test:prepare": "npm run test:e2e -- --prepareOnly",
"test:e2e": "node scripts/e2e.js",
"test:e2e:update-snaphots": "node scripts/e2e.js --updateSnapshot",
"test:unit": "node_modules/.bin/jest",
"test:external": "node scripts/test-external-project.js",
"test:external-repos": "npm run test:external external-repos",
"lint": "node_modules/.bin/eslint --ext .js,.ts .",
"lint:fix": "node_modules/.bin/eslint --fix --ext .js,.ts .",
"typecheck": "node_modules/.bin/tsc -p .",
"doc": "cd docs && bundle exec jekyll serve --livereload",
"doc:link": "git worktree add docs/_site gh-pages",
"doc:unlink": "git worktree prune",
"doc:build": "cd docs && bundle exec jekyll build",
"doc:build-commit": "npm run doc:build && cd docs/_site && git add --all && git commit -m \"Updates github pages\"",
"changelog": "node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"preversion": "npm run test",
"update:e2e": "node scripts/update-e2e-templates.js",
"version": "npm run changelog && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kulshekhar/ts-jest.git"
},
"keywords": [
"jest",
"typescript",
"sourcemap",
"react",
"testing"
],
"author": "Kulshekhar Kabra <kulshekhar@users.noreply.github.com> (https://github.com/kulshekhar)",
"contributors": [
"Huafu Gandon <huafu.gandon@gmail.com> (https://github.com/huafu)",
"Anh Pham <anhpnnd@gmail.com> (https://github.com/ahnpnl)",
"Gustav Wengel <gustavwengel@gmail.com> (https://github.com/GeeWee)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kulshekhar/ts-jest/issues"
},
"homepage": "https://kulshekhar.github.io/ts-jest",
"dependencies": {
"bs-logger": "0.x",
"buffer-from": "1.x",
"fast-json-stable-stringify": "2.x",
"json5": "2.x",
"lodash.memoize": "4.x",
"make-error": "1.x",
"micromatch": "4.x",
"mkdirp": "0.x",
"semver": "6.x",
"yargs-parser": "18.x"
},
"peerDependencies": {
"jest": ">=25 <26",
"typescript": ">=3.4 <4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"post-commit": "git reset"
}
},
"devDependencies": {
"@commitlint/cli": "8.x",
"@commitlint/config-conventional": "8.x",
"@jest/transform": "25.x",
"@jest/types": "25.x",
"@types/babel__core": "7.x",
"@types/buffer-from": "latest",
"@types/cross-spawn": "latest",
"@types/fs-extra": "latest",
"@types/jest": "25.x",
"@types/js-yaml": "latest",
"@types/json5": "latest",
"@types/lodash.memoize": "4.x",
"@types/lodash.merge": "4.x",
"@types/lodash.set": "4.x",
"@types/micromatch": "4.x",
"@types/mkdirp": "latest",
"@types/node": "10.x",
"@types/react": "16.x",
"@types/semver": "latest",
"@types/yargs": "latest",
"@types/yargs-parser": "15.x",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"conventional-changelog-cli": "2.x",
"cross-spawn": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prettier": "latest",
"fs-extra": "8.x",
"glob-gitignore": "latest",
"husky": "3.x",
"jest": "25.x",
"js-yaml": "latest",
"lint-staged": "latest",
"lodash.merge": "4.x",
"lodash.set": "4.x",
"npm-run-all": "latest",
"prettier": "1.x",
"source-map": "latest",
"typescript": "3.x"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
],
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": ">= 8"
}
}