-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
67 lines (67 loc) · 1.72 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
{
"name": "react-animated-burgers",
"version": "1.2.8",
"main": "lib/index.js",
"module": "lib/index.es.js",
"files": [
"lib"
],
"description": "Hamburger button components for React.js with animated state changes.",
"keywords": [
"React.js",
"JavaScript",
"TypeScript",
"Hamburger Button"
],
"author": {
"name": "Mir Neamul Karim",
"email": "auvik1@yahoo.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AuvikAlive/react-animated-burgers.git"
},
"homepage": "https://AuvikAlive.github.io/react-animated-burgers",
"dependencies": {},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^4.1.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@types/jest": "^26.0.3",
"@types/node": "^14.0.14",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"rollup": "^2.18.1",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-typescript2": "^0.27.1",
"styled-components": "^4.1.3",
"typescript": "^3.9.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"lib": "SET NODE_ENV=production && rm -rf lib && mkdir lib && rollup -c"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}