Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mattphillips committed Sep 28, 2022
1 parent d88c2d2 commit a29d62a
Show file tree
Hide file tree
Showing 2 changed files with 2,355 additions and 12 deletions.
28 changes: 16 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@
],
"types": "./types/index.d.ts",
"scripts": {
"build": "babel src -d dist --ignore src/**/*.test.js",
"build": "babel src --out-dir dist --ignore 'src/**/*.test.js'",
"prepublishOnly": "yarn build",
"test": "jest",
"test:coverage": "yarn test --coverage"
"test:coverage": "yarn test --coverage",
"typecheck": "tsc --noEmit types/index.d.ts"
},
"keywords": [
"jest",
Expand All @@ -36,26 +37,29 @@
},
"homepage": "https://github.com/mattphillips/jest-chain#readme",
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@types/jest": "^26.0.23",
"codecov": "^3.0.1",
"jest": "^27.0.5",
"jest-extended": "^0.11.5",
"pretty-format": "^22.4.3"
"@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": {
"snapshotSerializers": [
"pretty-format/build/plugins/convert_ansi.js"
"jest-serializer-ansi-escapes"
],
"setupFilesAfterEnv": [
"jest-extended"
"jest-extended/all"
]
}
}
Loading

0 comments on commit a29d62a

Please sign in to comment.