-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.14 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
47
48
{
"name": "react-rightclickmenu",
"version": "1.0.1",
"description": "A simple context menu component for React",
"main": "lib/index.js",
"scripts": {
"watch": "babel --watch src --out-dir lib",
"prettier": "prettier src/*.js --write",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "https://github.com/rmdort/react-rightclickmenu.git"
},
"bugs": {
"url": "https://github.com/rmdort/react-rightclickmenu/issues"
},
"keywords": [
"react",
"contextmenu",
"context menu",
"right click menu"
],
"author": "Vinay M <rmdort@gmail.com>",
"license": "ISC",
"prettier": {
"semi": false
},
"dependencies": {
"prop-types": "^15.6.2",
"react-onclickoutside": "^6.7.1"
},
"peerDependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"gh-pages": "^2.0.1",
"prettier": "^1.15.3",
"react": "^16.7.0",
"react-dom": "^16.7.0"
}
}