-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
75 lines (75 loc) · 1.96 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
{
"name": "hamburger-react",
"version": "2.5.1",
"description": "Animated hamburger menu icons for React",
"homepage": "https://hamburger-react.netlify.app",
"repository": "luukdv/hamburger-react",
"bugs": "https://github.com/luukdv/hamburger-react/issues",
"license": "MIT",
"author": {
"name": "Luuk de Vlieger",
"email": "[email protected]",
"url": "https://www.luuk.site"
},
"files": [
"dist-cjs",
"dist-esm",
"dist-types"
],
"keywords": [
"hamburger",
"burger",
"menu",
"react",
"icon",
"icons",
"toggle",
"hooks",
"animation",
"animations",
"burger-menu",
"hamburger-menu",
"navigation",
"reactjs",
"sidebar",
"transition",
"transitions"
],
"main": "dist-cjs/index.js",
"module": "dist-esm/index.js",
"types": "dist-types/index.d.ts",
"sideEffects": false,
"scripts": {
"build:cjs": "BUILD_TYPE=cjs babel src --extensions '.ts,.tsx' --out-dir dist-cjs",
"build:esm": "babel src --extensions '.ts,.tsx' --out-dir dist-esm",
"build:types": "tsc --emitDeclarationOnly",
"build": "run-p build:cjs build:esm build:types",
"prebuild": "rimraf dist-*",
"prepublishOnly": "npm test && npm run build",
"test:watch": "jest --watch",
"test": "jest",
"ts": "tsc --noEmit"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/plugin-transform-modules-commonjs": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^13.0.0",
"@types/react": "^17.0.43",
"babel-plugin-jsx-remove-data-test-id": "^3.0.0",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18"
}
}