UNPKG

2.01 kBJSONView Raw
1{
2 "name": "react-typeahead",
3 "version": "1.0.6",
4 "description": "React-based typeahead and typeahead-tokenizer",
5 "keywords": [
6 "react",
7 "typeahead",
8 "tokenizer",
9 "autocomplete",
10 "react-component"
11 ],
12 "homepage": "https://github.com/fmoo/react-typeahead",
13 "bugs": {
14 "url": "https://github.com/fmoo/react-typeahead/issues",
15 "email": "ruibalp@gmail.com"
16 },
17 "license": "ISC",
18 "author": {
19 "name": "Peter Ruibal",
20 "email": "ruibalp@gmail.com",
21 "url": "https://github.com/fmoo"
22 },
23 "contributors": [
24 {
25 "name": "Sam Breed",
26 "email": "sam@quickleft.com",
27 "url": "http://wookiehangover.com"
28 }
29 ],
30 "repository": {
31 "type": "git",
32 "url": "https://github.com/fmoo/react-typeahead.git"
33 },
34 "dependencies": {
35 "classnames": "^1.2.0",
36 "fuzzy": "^0.1.0"
37 },
38 "peerDependencies": {
39 "react": ">= 0.13.0"
40 },
41 "main": "lib/react-typeahead.js",
42 "devDependencies": {
43 "browserify": "^8.0.2",
44 "chai": "^1.9.1",
45 "es5-shim": "^4.0.1",
46 "gulp": "^3.8.7",
47 "gulp-mocha-phantomjs": "^0.4.0",
48 "gulp-react": "^3.0.1",
49 "literalify": "^0.4.0",
50 "lodash": "^2.4.1",
51 "mocha": "^1.21.4",
52 "react-tools": "^0.13.0",
53 "reactify": "^1.0.0",
54 "sinon": "^1.10.3",
55 "watchify": "^2.2.1"
56 },
57 "scripts": {
58 "test": "npm run build-test && gulp test",
59 "watchify-test": "watchify test/main.js -o test/bundle.js -v",
60 "build-test": "browserify test/main.js -o test/bundle.js",
61 "build": "browserify ./src/react-typeahead.js -t reactify -t literalify -x react -x 'react/addons' -s ReactTypeahead -o ./dist/react-typeahead.js",
62 "watchify": "watchify ./src/react-typeahead.js -t reactify -t literalify -x react -x 'react/addons' -s ReactTypeahead -o ./dist/react-typeahead.js",
63 "lib": "gulp build",
64 "prepublish": "npm run lib"
65 },
66 "literalify": {
67 "react": "window.React || require('react')",
68 "react/addons": "window.React || require('react/addons')"
69 }
70}