UNPKG

jest-chain

Version:

Chain Jest matchers together to create one powerful assertion

82 lines (81 loc) 1.91 kB
{ "name": "jest-chain", "version": "1.1.6", "description": "Chain Jest matchers together to create one powerful assertion", "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", "matchers", "assertions", "chain", "chainable", "expect", "test" ], "author": "Matt Phillips <matt@mattphillips.io> (mattphillips.io)", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/mattphillips/jest-chain.git" }, "bugs": { "url": "https://github.com/mattphillips/jest-chain/issues" }, "homepage": "https://github.com/mattphillips/jest-chain#readme", "devDependencies": { "@babel/cli": "^7.19.3", "@babel/core": "^7.19.3", "@babel/plugin-transform-modules-commonjs": "^7.18.6", "@types/jest": "^29.0.3", "jest": "^29.1.1", "jest-extended": "^3.1.0", "jest-serializer-ansi-escapes": "^2.0.1", "typescript": "^4.8.4" }, "babel": { "ignore": [ "*.test.js" ], "plugins": [ "@babel/plugin-transform-modules-commonjs" ] }, "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" ] } }