forked from LoicMahieu/material-ui-color-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.37 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
{
"name": "poetic-material-ui-color-picker",
"version": "1.0.2",
"description": "<ColorInput> component for material-ui",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production babel ./src -d lib",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"files": [
"LICENSE",
"*.md",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/loicmahieu/material-ui-color-picker.git"
},
"keywords": [
"reactjs",
"react",
"color",
"picker",
"selector"
],
"author": "Loic Mahieu",
"license": "MIT",
"bugs": {
"url": "https://github.com/loicmahieu/material-ui-color-picker/issues"
},
"homepage": "https://github.com/loicmahieu/material-ui-color-picker#readme",
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"material-ui": "^0.17.1",
"react-dom": "^15.4.2",
"react-tap-event-plugin": "^2.0.1"
},
"dependencies": {
"react": "~15.4.0",
"react-color": "^2.11.4",
"recompose": "^0.22.0"
},
"peerDependencies": {
"material-ui": "^0.17.1"
}
}