forked from mattkrick/react-githubish-mentions
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "@axosoft/react-githubish-mentions",
"version": "1.3.3",
"description": "a mentions component kinda like GitHub's. But made in react.",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel -d lib/ src/",
"prepublishOnly": "yarn clean && yarn build",
"watch": "babel -w -d lib/ src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axosoft/react-githubish-mentions.git"
},
"keywords": [
"react",
"mentions",
"tag",
"autocomplete",
"typeahead"
],
"files": [
"lib"
],
"author": "Matt Krick <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/axosoft/react-githubish-mentions/issues"
},
"homepage": "https://github.com/axosoft/react-githubish-mentions#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"rimraf": "^2.5.3"
},
"dependencies": {
"ramda": "^0.26.1",
"react-portal-hoc": "^0.4.1",
"scroll-into-view-if-needed": "^2.2.24",
"textarea-caret": "Axosoft/textarea-caret-position.git#4a62d93167b6cfb825d866601032486663bd7c61"
},
"peerDependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2"
}
}