forked from i-like-robots/react-tags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "react-tag-content",
"version": "0.0.3",
"description": "React Tag Content is a 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",
"prepublish": "npm run build"
},
"keywords": [
"react",
"tags",
"tag input",
"react-component",
"autosuggest",
"autocomplete"
],
"contributors": [
"Prakhar Srivastav",
"Matt Hinchliffe",
"Ansgar Mertens"
],
"license": "MIT",
"repository": "https://github.com/protofy/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"
},
"dependencies": {
"react-input-autosize": "^0.6.10"
}
}