-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
52 lines (52 loc) · 1.32 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-twitter-typeahead",
"description": "A reactJS component that integrates Twitter's typeahead autosuggest control",
"version": "1.1.10",
"license": "MIT",
"componentJSX": "lib/js/react-typeahead.js",
"main": "dist/lib/js/react-typeahead.js",
"repository": "erikschlegel/React-Twitter-Typeahead",
"maintainers": [
{
"name": "Erik Schlegel",
"email": "[email protected]",
"web": "erikschlegel.com"
}
],
"devDependencies": {
"browserify": "^11.0.1",
"babel": "^5.8.21",
"babelify": "^6.1.3",
"browserify-shim": "^3.8.3",
"envify": "^3.2.0",
"grunt": "^0.4.5",
"grunt-bower-task": "^0.4.0",
"esprima-fb": "^15001.1001.0-dev-harmony-fb",
"grunt-browserify": "^4.0.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-watch": "^0.6.1",
"grunt-jscs": "^2.1.0",
"grunt-mocha-test": "*",
"grunt-react": "^0.12.2",
"grunt-watchify": "^0.1.0",
"jscs": "^2.1.0",
"react": ">=0.13.0"
},
"dependencies": {
"extend": "^3.0.0",
"handlebars": "^3.0.3",
"jquery": "^2.1",
"typeahead.js": "^0.11.1"
},
"browserify": {
"transform": [
"babelify"
]
},
"scripts": {
"test": "grunt build",
"build": "grunt build",
"prepublish": "grunt build"
},
"testResultMain": "testResults.txt"
}