forked from yazaabed/react-tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.61 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
{
"name": "@yazanaabed/react-tabs",
"version": "2.3.3",
"description": "This component use compound components concept to create a simple tabs component",
"main": "index.js",
"directories": {
"lib": "lib",
"src": "src"
},
"dependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"deep-extend": "^0.6.0",
"glamor": "2.20.40",
"glamorous": "4.13.1",
"randomatic": "^3.1.0",
"react": "16.5.2"
},
"devDependencies": {
"@babel/preset-react": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-minify": "^0.5.0",
"react-dom": "16.3.2",
"react-scripts": "^2.0.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"compile": "npm run compile-dev && npm run compile-prod",
"compile-dev": "NODE_ENV=development babel src --out-dir lib/dev --copy-files",
"compile-prod": "NODE_ENV=production babel lib/dev --out-dir lib/prod --copy-files"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YazanAabeed/react-tabs.git"
},
"keywords": [
"react",
"reactjs",
"tabs",
"react-tabs",
"state-management",
"components",
"glamorous"
],
"author": "yazanaabed <yazanaabed2@gmail.com> (https://medium.com/@yazanaabed)",
"license": "MIT",
"bugs": {
"url": "https://github.com/YazanAabeed/react-tabs/issues"
},
"homepage": "https://github.com/YazanAabeed/react-tabs#readme",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}