forked from signavio/react-mentions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.38 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-mentions",
"version": "0.2.2",
"description": "React mentions input",
"main": "lib/index.js",
"scripts": {
"test": "script/test",
"transpile": "babel src --out-dir lib",
"dist": "script/dist",
"start": "cd gh-pages && webpack-dev-server --config webpack.hot.config.js --port 9090 --d --hot --inline --progress --colors",
"bump-patch": "mversion patch -m",
"bump-minor": "mversion minor -m",
"bump-major": "mversion major -m",
"predist": "npm run transpile",
"pretranspile": "npm run test",
"prepages-publish": "cd gh-pages && webpack",
"pages-publish": "grunt publish"
},
"repository": {
"type": "git",
"url": "https://github.com/effektif/react-mentions.git"
},
"keywords": [
"react",
"mentions",
"react-component"
],
"author": "Jan-Felix Schwarz",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/effektif/react-mentions/issues"
},
"homepage": "https://github.com/effektif/react-mentions",
"devDependencies": {
"babel": "^5.8.29",
"babel-core": "^5.8.29",
"babel-loader": "^5.3.2",
"babelify": "^6.1.1",
"browserify": "4.2.3",
"browserify-shim": "3.6.0",
"bundle-loader": "0.5.1",
"chai": "1.10.0",
"css-loader": "^0.20.0",
"envify": "1.2.0",
"grunt": ">=0.4.1",
"grunt-contrib-copy": ">=0.4.1",
"grunt-contrib-less": "~1.0.0",
"grunt-gh-pages": "~0.9.1",
"karma": "^0.13.11",
"karma-babel-preprocessor": "^5.2.2",
"karma-browserify": "^4.4.0",
"karma-chrome-launcher": "0.1.4",
"karma-cli": "0.0.4",
"karma-coverage": "~0.2.7",
"karma-firefox-launcher": "0.1.3",
"karma-junit-reporter": "~0.2.2",
"karma-mocha": "0.1.3",
"karma-phantomjs-launcher": "~0.1.4",
"less": "~2.3.1",
"less-loader": "^2.2.0",
"mocha": "1.20.1",
"mversion": "^1.10.0",
"react": "~0.14.0",
"react-hot-loader": "^1.2.5",
"react-router": "^1.0.0-rc3",
"react-tools": "~0.14.0-alpha3",
"reactify": "0.15.x",
"rf-release": "0.3.2",
"sinon": "~1.12.1",
"sinon-chai": "~2.6.0",
"style-loader": "^0.12.4",
"uglify-js": "2.4.15",
"webpack": "1.4.5",
"webpack-dev-server": "1.6.5"
},
"peerDependencies": {
"react": ">=0.14.0"
},
"browserify-shim": {
"react": "global:React",
"react/addons": "global:React"
},
"dependencies": {
"fbjs": "^0.4.0"
}
}