forked from yury-dymov/react-autocomplete-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.98 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
{
"name": "react-autocomplete-input",
"version": "1.0.11",
"description": "Autocomplete input field for React",
"main": "dist/bundle.js",
"scripts": {
"build": "NODE_ENV=production webpack -p",
"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",
"cheerio": "^0.22.0",
"css-loader": "^2.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^3.0.2",
"jsdom": "^13.1.0",
"mocha": "^5.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": "^3.12.0",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"get-input-selection": "^1.1.4",
"prop-types": "^15.6.2",
"textarea-caret": "^3.0.2"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
}
}