UNPKG

dts-jest

Version:

A preprocessor for Jest to snapshot test TypeScript declaration (.d.ts) files

71 lines (70 loc) 1.86 kB
{ "name": "dts-jest", "version": "26.0.2", "description": "A preprocessor for Jest to snapshot test TypeScript declaration (.d.ts) files", "keywords": [ "jest", "jest-transform", "test", "typescript", "typescript-declarations" ], "main": "lib/index.js", "types": "lib/index.d.ts", "bin": { "dts-jest-remap": "bin/dts-jest-remap.js" }, "repository": "https://github.com/ikatyang/dts-jest", "homepage": "https://github.com/ikatyang/dts-jest#readme", "author": { "name": "Ika", "email": "ikatyang@gmail.com", "url": "https://github.com/ikatyang" }, "license": "MIT", "scripts": { "prepublish": "yarn run build", "lint": "prettier src --check", "test": "jest -c ./jest.json --no-cache", "test-integration": "jest -c ./tests/jest.json --no-cache", "remap-integration": "node ./bin/dts-jest-remap ./tests/example.ts --rename '{{basename}}.snap.{{extname}}'", "prebuild": "rm -rf ./lib", "build": "tsc -p ./tsconfig.build.json", "release": "standard-version" }, "dependencies": { "globby": "^6.1.0", "jest-snapshot-parser": "^1.0.0", "lodash.intersection": "^4.4.0", "make-dir": "^1.0.0", "pretty-format": "^21.0.0", "ts-comment": "^1.1.0", "tslib": "^2.4.0", "yargs": "^14.2.3" }, "devDependencies": { "@types/globby": "6.1.0", "@types/lodash.intersection": "4.4.6", "@types/make-dir": "1.0.3", "@types/node": "12.12.6", "@types/pretty-format": "20.0.1", "@types/yargs": "8.0.3", "jest": "28.1.0", "prettier": "2.6.2", "standard-version": "9.3.2", "ts-jest": "28.0.2", "typescript": "5.0.3" }, "peerDependencies": { "jest": ">= 28.0.0", "typescript": ">= 4.0.0" }, "engines": { "node": ">= 12" }, "files": [ "/bin/**/*", "/lib/**/*", "/*.js" ] }