-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
82 lines (82 loc) · 2.22 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "react-autocomplete-input",
"version": "1.0.31",
"description": "Autocomplete input field for React",
"main": "dist/bundle.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "NODE_ENV=production webpack",
"clean": "rimraf dist coverage lib",
"lint": "eslint src --ext .js",
"test": "mocha --require @babel/register",
"coverage": "NODE_ENV=production webpack && nyc _mocha --require @babel/register && NODE_ENV=production webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yury-dymov/react-autocomplete-input.git"
},
"keywords": [
"react",
"autocomplete",
"input",
"textarea"
],
"author": "Yury Dymov",
"license": "MIT",
"bugs": {
"url": "https://github.com/yury-dymov/react-autocomplete-input/issues"
},
"homepage": "https://github.com/yury-dymov/react-autocomplete-input#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.0",
"chai": "^4.2.0",
"chai-enzyme": "^1.0.0-beta.1",
"css-loader": "^2.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"eslint-webpack-plugin": "^2.4.1",
"jsdom": "^16.5.0",
"mini-css-extract-plugin": "^1.3.1",
"mocha": "^10.2.0",
"nyc": "^14.1.1",
"react": "^16.7.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.7.0",
"rimraf": "^2.6.3",
"sinon": "^7.2.2",
"style-loader": "^0.23.1",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"core-js": "3",
"get-input-selection": "^1.1.4",
"lodash.isequal": "^4.5.0",
"prop-types": "^15.7.2",
"scroll-into-view-if-needed": "^3.1.0",
"textarea-caret": "^3.0.2"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"browserslist": [
"edge 16",
"safari 9",
"firefox 57",
"ie 11",
"ios 9",
"chrome 49"
]
}