-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.01 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.01 KB
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
{
"name": "react-autocomplete-search",
"version": "1.0.2",
"description": "A react UI for autocomplete results",
"main": "search.js",
"scripts": {
"build": "babel ./react-autocomplete/search.jsx > search.js",
"test": "jshint . --exclude node_modules",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/varunchauhan49/react-autocomplete.git"
},
"keywords": [
"react",
"autocomplete",
"search",
"list",
"results"
],
"author": "Varun Chauhan",
"license": "ISC",
"bugs": {
"url": "https://github.com/varunchauhan49/react-autocomplete/issues"
},
"browserify": {
"transform": [
"node-lessify"
]
},
"dependencies": {
"node-lessify": "0.0.10",
"react": "^0.14.6"
},
"peerDependencies": {
"react": "^0.14.6"
},
"devDependencies": {
"jshint": "^2.7.0",
"react": "^0.14.6",
"babel": "^5.6.23"
},
"homepage": "https://github.com/varunchauhan49/react-autocomplete#readme"
}