Skip to content

Commit 59e6644

Browse files
committed
v1.3.3
1 parent 1812b86 commit 59e6644

File tree

1 file changed

+23
-6
lines changed

1 file changed

+23
-6
lines changed

package.json

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,30 @@
11
{
22
"name": "@webscopeio/react-textarea-autocomplete",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"description": "Offers autocomplete over textarea in style of GitHub.",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/webscopeio/react-textarea-autocomplete"
88
},
9-
"files": ["index.js", "umd/", "types.js", "style.css"],
9+
"files": [
10+
"index.js",
11+
"umd/",
12+
"types.js",
13+
"style.css"
14+
],
1015
"main": "index.js",
1116
"author": "Jakub Benes <[email protected]>",
1217
"license": "MIT",
1318
"bugs": {
1419
"url": "https://github.com/webscopeio/react-textarea-autocomplete/issues"
1520
},
1621
"homepage": "https://github.com/webscopeio/react-textarea-autocomplete",
17-
"keywords": ["react-component", "textarea", "autocomplete", "react"],
22+
"keywords": [
23+
"react-component",
24+
"textarea",
25+
"autocomplete",
26+
"react"
27+
],
1828
"scripts": {
1929
"build": "cp src/types.js types.js && yarn build:umd && yarn build:cjs",
2030
"build:umd": "rollup -c rollup.config.umd.js",
@@ -70,15 +80,22 @@
7080
"textarea-caret": "3.0.2"
7181
},
7282
"lint-staged": {
73-
"src/*.{js,jsx}": ["eslint src --fix", "git add"]
83+
"src/*.{js,jsx}": [
84+
"eslint src --fix",
85+
"git add"
86+
]
7487
},
7588
"jest": {
76-
"setupFiles": ["<rootDir>/setupJest.js"],
89+
"setupFiles": [
90+
"<rootDir>/setupJest.js"
91+
],
7792
"moduleNameMapper": {
7893
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js"
7994
}
8095
},
8196
"babel": {
82-
"presets": ["react-app"]
97+
"presets": [
98+
"react-app"
99+
]
83100
}
84101
}

0 commit comments

Comments
 (0)