This repository has been archived by the owner on Nov 12, 2023. It is now read-only.
forked from fmoo/react-typeahead
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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
{
"name": "react-typeahead",
"version": "1.0.0",
"description": "React-based typeahead and typeahead-tokenizer",
"keywords": [
"react",
"typeahead",
"tokenizer",
"react-component"
],
"homepage": "https://github.com/fmoo/react-typeahead",
"bugs": {
"url": "https://github.com/fmoo/react-typeahead/issues",
"email": "[email protected]"
},
"license": "ISC",
"author": {
"name": "Peter Ruibal",
"email": "[email protected]",
"url": "https://github.com/fmoo"
},
"contributors": [
{
"name": "Sam Breed",
"email": "[email protected]",
"url": "http://wookiehangover.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/fmoo/react-typeahead.git"
},
"dependencies": {
"fuzzy": "^0.1.0",
"jquery": "^2.1.1"
},
"main": "src/react-typeahead.js",
"devDependencies": {
"browserify": "^5.9.3",
"chai": "^1.9.1",
"es5-shim": "^4.0.1",
"gulp": "^3.8.7",
"gulp-mocha-phantomjs": "^0.4.0",
"lodash": "^2.4.1",
"mocha": "^1.21.4",
"react-tools": "^0.11.1",
"reactify": "^0.14.0",
"sinon": "^1.10.3",
"watchify": "^1.0.2"
},
"scripts": {
"watch": "watchify test/main.js -o test/bundle.js -v",
"build-test": "browserify test/main.js -o test/bundle.js",
"build": "browserify src/react-typeahead.js -s ReactTypeahead -u react -o dist/react-typeahead.js"
},
"browserify": {
"transform": [
"reactify"
]
}
}