-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
71 lines (71 loc) · 2.03 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
{
"name": "react-simple-colorpicker",
"version": "1.4.2",
"description": "Colorpicker for React",
"main": "lib/index.js",
"files": [
"lib",
"umd"
],
"scripts": {
"build": "npm run build:umd && npm run build:es5",
"build:umd": "NODE_ENV=production webpack src/index.js umd/index.js",
"build:es5": "NODE_ENV=production babel -d lib/ src/",
"build:example": "NODE_ENV=development webpack --config webpack.dev.config.js",
"start": "NODE_ENV=development webpack-dev-server --config webpack.dev.config.js --inline",
"test": "echo \"Error: no test specified\" && exit 1",
"version": "npm run build",
"postversion": "git push origin master --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git://github.com/WickyNilliams/react-simple-colorpicker"
},
"keywords": [
"react",
"react-component",
"color",
"colour",
"picker",
"rgb",
"hsv",
"hex"
],
"author": {
"name": "Nick Williams",
"url": "http://wicky.nillia.ms"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/WickyNilliams/react-simple-colorpicker/issues"
},
"homepage": "https://github.com/WickyNilliams/react-simple-colorpicker",
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0-beta || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0-beta || ^16.0.0"
},
"dependencies": {
"classnames": "^2.2.0",
"create-react-class": "^15.0.0",
"prop-types": "^15.5.10",
"pure-color": "^1.2.0",
"react-addons-pure-render-mixin": "^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"css-loader": "^0.22.0",
"extract-text-webpack-plugin": "^0.9.1",
"json-loader": "^0.5.3",
"node-sass": "^3.4.2",
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.8",
"webpack-dev-server": "^1.12.1"
}
}