UNPKG

jest-expect-message

Version:
89 lines (88 loc) 1.98 kB
{ "name": "jest-expect-message", "version": "1.1.3", "description": "Add custom message to Jest expects", "main": "dist/index.js", "types": "types/index.d.ts", "files": [ "dist", "types" ], "scripts": { "build": "babel src --out-dir dist --ignore 'src/**/*.test.js'", "prepublishOnly": "yarn build", "test": "jest", "test:coverage": "yarn test --coverage", "typecheck": "tsc --noEmit types/index.d.ts" }, "keywords": [ "jest", "expect", "message", "matchers", "assertions", "test" ], "author": "Matt Phillips <matt@mattphillips.io> mattphillips.io", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/mattphillips/jest-expect-message.git" }, "bugs": { "url": "https://github.com/mattphillips/jest-expect-message/issues" }, "homepage": "https://github.com/mattphillips/jest-expect-message#readme", "devDependencies": { "@babel/cli": "^7.18.10", "@babel/core": "^7.19.0", "@babel/preset-env": "^7.19.0", "@types/jest": "^29.0.0", "jest": "^29.0.2", "jest-extended": "^3.1.0", "jest-serializer-ansi-escapes": "^2.0.1", "typescript": "^4.8.2" }, "babel": { "ignore": [ "*.test.js" ], "presets": [ [ "@babel/preset-env", { "targets": { "node": "14" } } ] ] }, "jest": { "testEnvironment": "node", "testPathIgnorePatterns": [ ".idea", "examples", "/node_modules/", "/fixtures/", "/dist/" ], "coveragePathIgnorePatterns": [ "/node_modules/" ], "snapshotFormat": { "escapeString": false, "printBasicPrototype": false }, "snapshotSerializers": [ "jest-serializer-ansi-escapes" ], "moduleNameMapper": { "src/(.*)": "<rootDir>/src/$1" }, "setupFilesAfterEnv": [ "jest-extended/all" ] }, "dependencies": {} }