Skip to content

Commit

Permalink
v0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpalmer committed Oct 2, 2017
1 parent a9f999a commit f4003b5
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "formik",
"description": "Forms in React, without tears",
"version": "0.9.2",
"version": "0.9.3",
"license": "MIT",
"author": "Jared Palmer <jared@palmer.net>",
"repository": "jaredpalmer/formik",
Expand All @@ -18,7 +18,9 @@
"main": "dist/formik.js",
"module": "dist/formik.es6.js",
"typings": "dist/formik.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"test": "jest --env=jsdom",
"test:watch": "npm run test -- --watch",
Expand Down Expand Up @@ -88,15 +90,24 @@
"semi": true
},
"jest": {
"collectCoverageFrom": ["src/**/*.{ts,tsx}"],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"<rootDir>/test/**/*.ts?(x)",
"<rootDir>/test/**/?(*.)(spec|test).ts?(x)"
],
"transformIgnorePatterns": ["[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"],
"moduleFileExtensions": ["ts", "tsx", "js", "json"]
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}

0 comments on commit f4003b5

Please sign in to comment.