forked from i-like-robots/react-tags
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1016 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1016 Bytes
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
{
"name": "react-tag-autocomplete",
"version": "3.2.1",
"description": "React Tag Autocomplete is a simple tagging component ready to drop in your React projects.",
"main": "dist/ReactTags.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --progress --colors --port 8090",
"build": "webpack -p && ./node_modules/.bin/babel ./lib --out-dir dist"
},
"keywords": [
"react",
"tags",
"tag input",
"react-component",
"autosuggest",
"autocomplete"
],
"contributors": [
"Prakhar Srivastav",
"Matt Hinchliffe"
],
"license": "MIT",
"repository": "https://github.com/i-like-robots/react-tags",
"peerDependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0"
},
"devDependencies": {
"babel": "^5.3.3",
"babel-loader": "^5.1.2",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"webpack": "^1.9.4",
"webpack-dev-server": "^1.8.2"
}
}