forked from cyntler/hamburger-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.76 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
{
"name": "hamburger-react",
"version": "2.1.0",
"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": [
"animated",
"animation",
"burger",
"css",
"hamburger",
"icon",
"icons",
"menu",
"react",
"toggle",
"transition"
],
"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",
"typecheck": "tsc --noEmit"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.4",
"babel-plugin-jsx-remove-data-test-id": "^2.1.3",
"jest": "^25.5.4",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
}
}