forked from mattkrick/react-githubish-mentions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.33 KB
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
{
"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 <matt.krick@gmail.com>",
"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": {
"ramda": "^0.26.1",
"react-portal-hoc": "^0.4.1",
"textarea-caret": "git://github.com/schinizel/textarea-caret-position.git#276312a683de44e437d4fec115c9d5f2b5d0084d"
},
"peerDependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2"
}
}