Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpalmer committed Nov 17, 2017
1 parent 38f8e62 commit de3adb4
Showing 1 changed file with 29 additions and 13 deletions.
42 changes: 29 additions & 13 deletions package.json
@@ -1,25 +1,25 @@
{
"name": "react-fns",
"version": "1.0.1",
"version": "1.1.0",
"description": "Modern React components, hoc's, and utilities functions.",
"main": "dist/index.js",
"module": "dist/index.es6.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --env=jsdom",
"test:watch": "npm run test -- --watch",
"start":
"cross-env NODE_ENV=development tsc-watch --onSuccess \"rollup -c\"",
"start": "cross-env NODE_ENV=development tsc-watch --onSuccess \"rollup -c\"",
"prebuild": "rimraf dist",
"build":
"tsc && cross-env NODE_ENV=production rollup -c && cross-env NODE_ENV=development rollup -c && rimraf compiled",
"build": "tsc && 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/**/*.{ts,tsx}' 'test/**/*.{ts,tsx}'",
"format": "prettier --trailing-comma es5 --single-quote --write 'src/**/*.{ts,tsx}' 'test/**/*.{ts,tsx}'",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.{ts,tsx}": ["prettier --write", "git add"]
"**/*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"prettier": {
"trailingComma": "es5",
Expand All @@ -29,7 +29,12 @@
"type": "git",
"url": "git+https://github.com/jaredpalmer/react-fns.git"
},
"keywords": ["react", "react-fns", "render-props", "hoc"],
"keywords": [
"react",
"react-fns",
"render-props",
"hoc"
],
"author": "Jared Palmer <jared@palmer.net>",
"license": "MIT",
"bugs": {
Expand Down Expand Up @@ -67,13 +72,24 @@
"typescript": "^2.4.2"
},
"jest": {
"collectCoverageFrom": ["src/**/*.{ts,tsx}"],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": ["<rootDir>/src/**/?(*.)(spec|test).ts?(x)"],
"transformIgnorePatterns": ["[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"],
"moduleFileExtensions": ["ts", "tsx", "js", "json"]
"testMatch": [
"<rootDir>/src/**/?(*.)(spec|test).ts?(x)"
],
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"dependencies": {
"qs": "^6.5.1",
Expand Down

0 comments on commit de3adb4

Please sign in to comment.