-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
77 lines (77 loc) · 2.01 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@jasonrundell/react-mega-menu",
"version": "2.2.2",
"author": "jasonrundell <[email protected]>",
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "vite build",
"format": "prettier --write src/**/*.{js,jsx}",
"test": "jest --coverage"
},
"dependencies": {
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@vitejs/plugin-react": "^4.3.1",
"babel-jest": "^29.7.0",
"babel-plugin-istanbul": "^7.0.0",
"eslint": "^8.23.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"typescript": "^5.6.2",
"vite": "^5.4.6"
},
"peerDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jasonrundell/react-mega-menu.git"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"license": "MIT",
"description": "A React project which aims to be an accessible, responsive, boilerplate top navigation menu with a \"Mega Menu\"!",
"bugs": {
"url": "https://github.com/jasonrundell/react-mega-menu/issues"
},
"homepage": "https://github.com/jasonrundell/react-mega-menu#readme",
"keywords": [
"react",
"navigation",
"mega",
"menu",
"mega menu"
]
}