-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 863 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
{
"name": "HEXtoRGB",
"version": "1.0.0",
"description": "HEX to RGB Color Converter. Convert hex to rgb and vice-versa",
"main": "dist/bundle.js",
"author": "André Ruffert <[email protected]> (http://andreruffert.com/)",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/andreruffert/hex-to-rgb.git"
},
"bugs": {
"url": "https://github.com/andreruffert/hex-to-rgb/issues"
},
"dependencies": {
"crayola": "0.0.1",
"hex-rgb": "^1.0.0",
"react": "^0.12.2",
"rgb-hex": "^1.0.0"
},
"devDependencies": {
"6to5ify": "^4.1.0",
"browserify": "^8.1.3",
"http-server": "^0.7.4",
"watchify": "^2.3.0"
},
"scripts": {
"start": "npm run watch & http-server -p 9090 ./",
"watch": "watchify -t 6to5ify ./src/app.js -o ./dist/bundle.js -v"
}
}