Skip to content
Permalink
1cdde3eb41
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
0 contributors

Users who have contributed to this file

159 lines (159 sloc) 4.53 KB
{
"author": {
"name": "Kulshekhar Kabra",
"email": "kulshekhar@users.noreply.github.com",
"url": "https://github.com/kulshekhar"
},
"bin": {
"ts-jest": "cli.js"
},
"bugs": {
"url": "https://github.com/kulshekhar/ts-jest/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "Huafu Gandon",
"email": "huafu.gandon@gmail.com",
"url": "https://github.com/huafu"
},
{
"name": "Anh Pham",
"email": "anhpnnd@gmail.com",
"url": "https://github.com/ahnpnl"
},
{
"name": "Gustav Wengel",
"email": "gustavwengel@gmail.com",
"url": "https://github.com/GeeWee"
}
],
"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",
"mkdirp": "1.x",
"resolve": "1.x",
"semver": "6.x",
"yargs-parser": "^18.1.1"
},
"deprecated": false,
"description": "A preprocessor with source maps support to help use TypeScript with Jest",
"devDependencies": {
"@commitlint/cli": "8.x",
"@commitlint/config-conventional": "7.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/mkdirp": "latest",
"@types/node": "10.x",
"@types/react": "^16.x",
"@types/resolve": "latest",
"@types/semver": "latest",
"@types/yargs": "latest",
"@types/yargs-parser": "^15.0.0",
"conventional-changelog-cli": "2.x",
"cross-spawn": "latest",
"eslint": "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",
"tslint": "latest",
"tslint-config-prettier": "latest",
"tslint-plugin-prettier": "latest",
"typescript": "3.x"
},
"engines": {
"node": ">= 8"
},
"homepage": "https://kulshekhar.github.io/ts-jest",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"post-commit": "git reset"
}
},
"keywords": [
"jest",
"typescript",
"sourcemap",
"react",
"testing"
],
"license": "MIT",
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"git add"
],
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"main": "dist/index.js",
"name": "ts-jest",
"peerDependencies": {
"jest": ">=25 <26"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kulshekhar/ts-jest.git"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json -w",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"clean": "node scripts/clean.js",
"doc": "cd docs && bundle exec jekyll serve --livereload",
"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\"",
"doc:link": "git worktree add docs/_site gh-pages",
"doc:unlink": "git worktree prune",
"lint": "run-s lint:ts lint:js",
"lint:fix": "run-s lint:fix:ts lint:fix:js",
"lint:fix:js": "eslint . --fix",
"lint:fix:ts": "tslint --fix --project .",
"lint:js": "eslint . -f stylish",
"lint:ts": "tslint -t stylish --project .",
"postbuild": "node scripts/post-build.js",
"prebuild": "node scripts/clean-dist.js",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"pretest": "npm run lint",
"preversion": "npm run test",
"test": "run-s -s test:e2e \"test:unit -- {@}\" --",
"test:e2e": "node scripts/e2e.js",
"test:e2e:update-snaphots": "node scripts/e2e.js --updateSnapshot",
"test:external": "node scripts/test-external-project.js",
"test:monorepo": "npm run test:external monorepo",
"test:prepare": "npm run test:e2e -- --prepareOnly",
"test:unit": "jest",
"typecheck": "tsc -p .",
"update:e2e": "node scripts/update-e2e-templates.js",
"version": "npm run changelog && git add CHANGELOG.md"
},
"types": "dist/index.d.ts",
"version": "25.3.0"
}