forked from BrandyMint/react-color-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
{
"name": "react-color-picker",
"version": "2.1.9",
"description": "React Color Picker",
"main": "lib/index.js",
"scripts": {
"test": "make",
"start": "npm run serve && npm run dev",
"serve": "http-server",
"css": "webpack --colors --progress --config stylus.config.js",
"lib": "gulp && npm run css",
"dist": "webpack --progress --colors --config dist.config.js",
"dist.min": "webpack --progress --colors --optimize-minimize --optimize-occurence-order --optimize-dedupe --config dist.min.config.js",
"build": "npm run dist && npm run dist.min && npm run lib",
"dev": "webpack-dev-server --progress --colors --port 8090"
},
"keywords": [
"react",
"react-component",
"color",
"picker",
"color-picker"
],
"dependencies": {
"drag-helper": "^1.2.3",
"normalize.css": "^3.0.2",
"object-assign": "^2.0.0",
"region": "^2.1.2",
"tinycolor2": "^1.1.1"
},
"devDependencies": {
"babel-core": "^5.4.3",
"babel-loader": "^5.1.2",
"css-loader": "~0.9.0",
"extract-text-webpack-plugin": "~0.3.1",
"gulp": "^3.8.11",
"gulp-babel": "^5.1.0",
"style-loader": "~0.8.1",
"stylus-loader": "~0.4.0",
"webpack": "^1.9.7",
"webpack-dev-server": "^1.8.2"
},
"peerDependencies": {
"react": ">=0.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/zippyui/react-color-picker.git"
},
"bugs": {
"url": "https://github.com/zippyui/react-color-picker/issues"
},
"license": "MIT",
"author": "ZippyUI <[email protected]>"
}