forked from reactjs/react-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.37 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
{
"name": "react-autocomplete",
"version": "0.2.0",
"description": "Accessible, extensible, Autocomplete for React.js",
"main": "./build/lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/rackt/react-autocomplete.git"
},
"homepage": "https://github.com/rackt/react-autocomplete",
"bugs": "https://github.com/rackt/react-autocomplete/issues",
"directories": {
"example": "examples"
},
"scripts": {
"test": "BABEL_ENV=test mocha --recursive --require 'lib/__tests__/.setup.js' --compilers js:babel-register 'lib/__tests__/Autocomplete-test.js'",
"start": "rackt server"
},
"authors": [
"Ryan Florence <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"babel-core": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.4.0",
"enzyme": "^2.0.0",
"mocha": "~2.4.5",
"mocha-jsdom": "^1.0.0",
"rackt-cli": "^0.4.0",
"react": "^0.14.0",
"react-addons-test-utils": "^0.14.7",
"redbox-react": "^1.2.2"
},
"tags": [
"react",
"autocomplete",
"combobox",
"a11y"
],
"keywords": [],
"dependencies": {
"babel-preset-es2015": "^6.5.0",
"dom-scroll-into-view": "1.0.1",
"lodash": "^4.5.0",
"react": "^0.14.7",
"react-dom": "^0.14.7"
}
}