-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
39 lines (39 loc) · 954 Bytes
/
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
{
"name": "react-context-menu",
"version": "1.0.2",
"description": "A lightweight right-click context menu implemented in React.",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/babel ContextMenu.js -o index.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amurp/react-context-menu.git"
},
"keywords": [
"react",
"contextmenu",
"context",
"menu",
"right",
"click",
"component"
],
"author": "Aaron Murphy",
"license": "ISC",
"bugs": {
"url": "https://github.com/amurp/react-context-menu/issues"
},
"homepage": "https://github.com/amurp/react-context-menu#readme",
"dependencies": {
"react": "^15.3.1",
"react-dom": "^15.3.1"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0"
}
}