forked from react-tags/react-tags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.92 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
{
"name": "react-tag-input",
"version": "4.6.3",
"description": "React tags is a fantastically simple tagging component for your React projects",
"main": "dist-modules/ReactTags.js",
"scripts": {
"test": "jest --notify --coverage test/*",
"open-localhost": "node -e 'require(\"opn\")(\"http://localhost:8090/example/index.html\")'",
"test-watch": "jest --watch --notify test/*",
"dev": "webpack-dev-server --config webpack-dev-server.config.js --progress --inline --colors",
"build": "webpack --config webpack-production.config.js --progress --colors && babel lib --out-dir dist-modules",
"start": "npm-run-all --parallel open-localhost dev"
},
"keywords": [
"react",
"drag-drop",
"tags",
"tag input",
"react-component",
"autosuggest"
],
"author": "Prakhar Srivastav",
"license": "MIT",
"repository": "https://github.com/prakhar1989/react-tags",
"dependencies": {
"lodash": "^4.14.1",
"prop-types": "^15.5.8",
"material-ui": "^0.17.4",
"react-dnd": "^2.0.2",
"react-dnd-html5-backend": "^2.0.0",
"react-tap-event-plugin": "^2.0.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-rc",
"react-dom": "^0.14.0 || ^15.0.0-rc"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.0.20",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"enzyme": "^2.3.0",
"jest": "^19.0.2",
"jsdom": "^9.4.0",
"lodash": "4.17.4",
"npm-run-all": "^4.0.2",
"opn": "^4.0.2",
"react": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-dnd-test-backend": "^2.3.0",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"sinon": "^2.1.0",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"engines": {
"node": ">=5.0.0"
}
}