forked from fmoo/react-typeahead
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.97 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
{
"name": "react-typeahead",
"version": "1.0.2",
"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": {
"classnames": "^1.2.0",
"fuzzy": "^0.1.0",
"react": "^0.13.1"
},
"main": "lib/react-typeahead.js",
"devDependencies": {
"browserify": "^8.0.2",
"chai": "^1.9.1",
"es5-shim": "^4.0.1",
"gulp": "^3.8.7",
"gulp-mocha-phantomjs": "^0.4.0",
"gulp-react": "^3.0.1",
"literalify": "^0.4.0",
"lodash": "^2.4.1",
"mocha": "^1.21.4",
"react-tools": "^0.13.0",
"reactify": "^1.0.0",
"sinon": "^1.10.3",
"watchify": "^2.2.1"
},
"scripts": {
"test": "npm run build-test && gulp test",
"watchify-test": "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 -t reactify -t literalify -x react -x 'react/addons' -s ReactTypeahead -o ./dist/react-typeahead.js",
"watchify": "watchify ./src/react-typeahead.js -t reactify -t literalify -x react -x 'react/addons' -s ReactTypeahead -o ./dist/react-typeahead.js",
"lib": "gulp build",
"prepublish": "npm run lib"
},
"literalify": {
"react": "window.React || require('react')",
"react/addons": "window.React || require('react/addons')"
},
"browserify": {
"transform": [
"reactify"
]
}
}