forked from moroshko/react-autosuggest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.42 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
{
"name": "react-autosuggest",
"version": "2.1.1",
"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 <michael.moroshko@gmail.com>",
"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": {
"debounce": "^1.0.0",
"react-tap-event-plugin": "^0.2.1",
"react-themeable": "^1.0.1"
},
"peerDependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"chai": "^3.3.0",
"css-loader": "^0.19.0",
"eslint": "^1.6.0",
"eslint-loader": "^1.1.0",
"eslint-plugin-react": "^3.5.1",
"extract-text-webpack-plugin": "^0.8.2",
"jsdom": "<6.5.1",
"json-loader": "^0.5.3",
"less": "^2.5.3",
"less-loader": "^2.2.1",
"mocha": "^2.3.3",
"proxyquire": "^1.7.3",
"react": "^0.14.0",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.0",
"react-hot-loader": "^1.3.0",
"sinon": "^1.17.1",
"sinon-chai": "^2.8.0",
"style-loader": "^0.12.4",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
},
"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"
}