forked from Axosoft/react-githubish-mentions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "react-githubish-mentions",
"version": "1.2.0",
"description": "a mentions component kinda like GitHub's. But made in react.",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel --presets es2015,stage-0,react -d lib/ src/",
"prepublish": "npm run clean && npm run build",
"watch": "babel -w --presets es2015,stage-0,react -d lib/ src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattkrick/react-githubish-mentions.git"
},
"keywords": [
"react",
"mentions",
"tag",
"autocomplete",
"typeahead"
],
"author": "Matt Krick <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattkrick/react-githubish-mentions/issues"
},
"homepage": "https://github.com/mattkrick/react-githubish-mentions#readme",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.x.x",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"rimraf": "^2.5.3"
},
"dependencies": {
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-portal-hoc": "^0.4.1",
"textarea-caret": "git://github.com/component/textarea-caret-position.git#eddc6e29d8c03e25f96d133c12daa5539599f65b"
},
"peerDependencies": {
"react": "^16.4.1",
"react-dom": "^16.4.1"
}
}