-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 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
52
53
{
"name": "react-use-context-menu",
"version": "0.1.4",
"description": "React hook for managing custom context menus!",
"main": "dist/react-use-context-menu.js",
"module": "dist/react-use-context-menu.m.js",
"source": "src/index.js",
"scripts": {
"test": "jest",
"example": "parcel ./example/index.html --out-dir exampleDist",
"build": "rm -rf ./dist && microbundle -o dist/ --sourcemap false --compress false -f es,cjs",
"dev": "microbundle watch -o dist/ --sourcemap false --compress false"
},
"engines": {
"node": "> 4",
"npm": "> 3"
},
"files": [
"dist"
],
"peerDependencies": {
"react": ">=16.8"
},
"keywords": [
"react",
"hook",
"contextmenu"
],
"author": "Luca Campli [email protected]",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@testing-library/react-hooks": "^1.1.0",
"babel-jest": "^26.0.1",
"jest": "^26.0.1",
"microbundle": "^0.12.0",
"np": "^6.2.3",
"parcel-bundler": "^1.12.4",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-test-renderer": "^16.13.0"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/cluk3/use-context-menu.git"
},
"bugs": {
"url": "https://github.com/cluk3/use-context-menu/issues"
},
"homepage": "https://github.com/cluk3/use-context-menu#readme"
}