UNPKG

jest-extended-snapshot

Version:
58 lines (57 loc) 1.27 kB
{ "name": "jest-extended-snapshot", "version": "1.1.5", "description": "Additional Jest matchers for snapshot testing", "repository": "https://github.com/nicoespeon/jest-extended-snapshot", "author": "Nicolas Carlo <nicolascarlo.espeon@gmail.com>", "license": "MIT", "private": false, "keywords": [ "jest", "matchers", "extend", "extended", "snapshot", "approval", "test", "testing" ], "main": "dist/index.js", "types": "types/index.d.ts", "files": [ "dist", "README.md", "LICENSE.md", "types/index.d.ts" ], "peerDependencies": { "jest": ">= 23.x" }, "scripts": { "prebuild": "rimraf dist", "build": "tsc", "prepublishOnly": "npm run build", "lint": "tslint -c tslint.json 'src/**/*.ts'", "test": "jest", "test:watch": "npm run test -- --watch" }, "dependencies": { "jest-snapshot": "23.6.0" }, "devDependencies": { "@types/jest": "23.3.10", "husky": "1.2.1", "jest": "23.6.0", "prettier": "1.15.3", "pretty-quick": "1.8.0", "ts-jest": "23.10.5", "tslint": "5.11.0", "tslint-config-prettier": "1.17.0", "typescript": "3.2.2" }, "husky": { "hooks": { "pre-commit": "pretty-quick --staged" } } }