Skip to content

Commit

Permalink
v1.0.0-alpha.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpalmer committed Apr 18, 2018
1 parent c72281c commit a1b8df6
Showing 1 changed file with 26 additions and 13 deletions.
39 changes: 26 additions & 13 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": "1.0.0-alpha.4",
"version": "1.0.0-alpha.5",
"license": "MIT",
"author": "Jared Palmer <jared@palmer.net>",
"repository": "jaredpalmer/formik",
Expand All @@ -18,18 +18,17 @@
"main": "dist/formik.js",
"module": "dist/formik.es6.js",
"typings": "dist/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"test": "jest --env=jsdom && npm run size",
"test:watch": "npm run test -- --watch",
"start":
"cross-env NODE_ENV=development tsc-watch --project tsconfig.base.json --onSuccess \"rollup -c\"",
"start": "cross-env NODE_ENV=development tsc-watch --project tsconfig.base.json --onSuccess \"rollup -c\"",
"prebuild": "rimraf dist",
"build":
"tsc -p tsconfig.base.json && cross-env NODE_ENV=production rollup -c && cross-env NODE_ENV=development rollup -c && rimraf compiled",
"build": "tsc -p tsconfig.base.json && cross-env NODE_ENV=production rollup -c && cross-env NODE_ENV=development rollup -c && rimraf compiled",
"prepublish": "npm run build",
"format":
"prettier --trailing-comma es5 --single-quote --write 'src/**/*' 'test/**/*' 'README.md'",
"format": "prettier --trailing-comma es5 --single-quote --write 'src/**/*' 'test/**/*' 'README.md'",
"precommit": "lint-staged",
"addc": "all-contributors add",
"start-website": "cd website && yarn start",
Expand Down Expand Up @@ -101,14 +100,28 @@
"semi": true
},
"jest": {
"setupFiles": ["raf/polyfill", "<rootDir>/test/setupTest.ts"],
"collectCoverageFrom": ["src/**/*.{ts,tsx}"],
"setupFiles": [
"raf/polyfill",
"<rootDir>/test/setupTest.ts"
],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": ["<rootDir>/test/**/?(*.)(spec|test).ts?(x)"],
"transformIgnorePatterns": ["[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"],
"moduleFileExtensions": ["ts", "tsx", "js", "json"]
"testMatch": [
"<rootDir>/test/**/?(*.)(spec|test).ts?(x)"
],
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"size-limit": [
{
Expand Down

0 comments on commit a1b8df6

Please sign in to comment.