-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 1.6 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
{
"name": "react-color-picker-wheel",
"version": "0.1.7",
"description": "Color picker component for React.js using color wheel",
"homepage": "https://ahmethalac.github.io/react-color-picker-wheel/",
"keywords": [
"react",
"react-color",
"react-color-picker",
"color",
"color-picker",
"color-wheel"
],
"babel": {
"presets": [
"react",
"env",
"stage-0"
]
},
"main": "./lib/ColorPicker.js",
"devDependencies": {
"babel-core": "6.26.3",
"babel-loader": "7.1.5",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"css-loader": "4.3.0",
"eslint": "7.8.1",
"eslint-config-airbnb": "18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.6",
"husky": "4.2.5",
"lint-staged": "10.2.11",
"style-loader": "1.2.1",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"svg-url-loader": "6.0.0"
},
"dependencies": {
"prop-types": "15.7.2"
},
"peerDependencies": {
"react": "16.13.1"
},
"scripts": {
"build": "webpack",
"lint": "eslint src"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"author": {
"name": "ahmetfeyzihalac",
"email": "ahmetfeyzihalac@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ahmethalac/react-color-picker-wheel"
},
"license": "MIT"
}