Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jukben committed Mar 5, 2018
1 parent 5331fe8 commit 730f3de
Showing 1 changed file with 25 additions and 7 deletions.
32 changes: 25 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{
"name": "@webscopeio/react-textarea-autocomplete",
"version": "1.5.3",
"version": "2.0.0",
"description": "Offers autocomplete over textarea in style of GitHub.",
"repository": {
"type": "git",
"url": "https://github.com/webscopeio/react-textarea-autocomplete"
},
"files": ["dist", "types.js", "style.css"],
"files": [
"dist",
"types.js",
"style.css"
],
"main": "dist/react-textarea-autocomplete.cjs.js",
"module": "dist/react-textarea-autocomplete.es.js",
"unpkg": "dist/react-textarea-autocomplete.umd.min.js",
Expand All @@ -16,7 +20,12 @@
"url": "https://github.com/webscopeio/react-textarea-autocomplete/issues"
},
"homepage": "https://github.com/webscopeio/react-textarea-autocomplete",
"keywords": ["react-component", "textarea", "autocomplete", "react"],
"keywords": [
"react-component",
"textarea",
"autocomplete",
"react"
],
"scripts": {
"build": "cp src/types.js types.js && rollup -c",
"dev": "webpack-dev-server --config webpack.config.js",
Expand Down Expand Up @@ -72,16 +81,25 @@
"textarea-caret": "3.0.2"
},
"lint-staged": {
"src/*.{js,jsx}": ["eslint src --fix", "git add"]
"src/*.{js,jsx}": [
"eslint src --fix",
"git add"
]
},
"jest": {
"snapshotSerializers": ["enzyme-to-json/serializer"],
"setupFiles": ["<rootDir>/setupJest.js"],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFiles": [
"<rootDir>/setupJest.js"
],
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"babel": {
"presets": ["react-app"]
"presets": [
"react-app"
]
}
}

0 comments on commit 730f3de

Please sign in to comment.