Skip to content

Commit

Permalink
v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpalmer committed Jul 21, 2017
1 parent 6056790 commit cb08711
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "formik",
"description": "Forms in React, without tears",
"version": "0.7.3-rc1",
"version": "0.8.0",
"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/types/formik.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"test": "jest --env=jsdom",
"test:watch": "npm run test -- --watch",
Expand Down Expand Up @@ -72,15 +74,24 @@
]
},
"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 cb08711

Please sign in to comment.