forked from moroshko/react-autosuggest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.28 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
{
"name": "react-autosuggest",
"version": "1.18.3",
"description": "WAI-ARIA compliant React autosuggest component",
"main": "dist/Autosuggest.js",
"repository": {
"type": "git",
"url": "https://github.com/moroshko/react-autosuggest.git"
},
"author": "Misha Moroshko <[email protected]>",
"bugs": {
"url": "https://github.com/moroshko/react-autosuggest/issues"
},
"homepage": "https://github.com/moroshko/react-autosuggest",
"scripts": {
"start": "node server",
"lint": "eslint src examples/src",
"test": "mocha test/index.js --opts mocha.opts",
"dist": "babel src -d dist",
"examples-dist": "webpack --config webpack.dev.config.js",
"standalone": "webpack --config webpack.standalone.config.js",
"build": "npm run lint && npm test && npm run dist && npm run examples-dist && npm run standalone",
"gh-pages": "git checkout gh-pages; git pull; git merge master --no-edit; npm run examples-dist; cp examples/dist/*.* .; git add index.html app.css app.js; git commit -m 'Update gh-pages files'; git push; git checkout master"
},
"dependencies": {
"classnames": "^2.1.3",
"debounce": "^1.0.0"
},
"peerDependencies": {
"react": "^0.13.3"
},
"devDependencies": {
"babel": "^5.6.23",
"babel-eslint": "^3.1.23",
"babel-loader": "^5.3.2",
"chai": "^3.0.0",
"css-loader": "^0.15.4",
"eslint": "^0.24.1",
"eslint-loader": "^0.14.1",
"eslint-plugin-react": "^2.7.0",
"extract-text-webpack-plugin": "^0.8.2",
"jsdom": "<4.0.0",
"json-loader": "^0.5.2",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"mocha": "^2.2.5",
"proxyquire": "^1.6.0",
"react": "^0.13.3",
"react-hot-loader": "^1.2.8",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"style-loader": "^0.12.3",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1"
},
"keywords": [
"autosuggest",
"autocomplete",
"auto-suggest",
"auto-complete",
"auto suggest",
"auto complete",
"react autosuggest",
"react autocomplete",
"react auto-suggest",
"react auto-complete",
"react auto suggest",
"react auto complete",
"react-autosuggest",
"react-autocomplete",
"react-auto-suggest",
"react-auto-complete",
"react-component"
],
"license": "MIT"
}