-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 916 Bytes
/
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
{
"name": "react-color-wheel",
"version": "0.0.3",
"description": "Color Picker Component for React",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"version": "npm run build",
"postversion": "git push && git push --tags && rm -rf build/temp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/niyoko/react-color-wheel.git"
},
"author": "Niyoko Yuliawan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/niyoko/react-color-wheel/issues"
},
"homepage": "https://github.com/niyoko/react-color-wheel#readme",
"peerDependencies": {
"react": "*"
},
"dependencies": {
"chroma-js": "^1.3.4",
"react-dnd": "^2.5.3",
"react-dnd-html5-backend": "^2.5.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1"
}
}