-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 814 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 814 Bytes
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
{
"name": "convert-color",
"version": "1.1.1",
"description": "Convert Hex to RGB or HSL and RGB to Hex or HSL",
"license": "MIT",
"repository": "https://github.com/rafa-acioly/cerebro-convertcolor",
"author": {
"name": "Rafael Acioly",
"email": "aciolyr@gmail.com"
},
"engines": {
"node": ">=4"
},
"scripts": {
"start": "cerebro-scripts start",
"build": "cerebro-scripts build",
"test": "cerebro-scripts test",
"prepublish": "rimraf ./dist && npm run build"
},
"main": "dist/index.js",
"keywords": [
"cerebro",
"cerebro-plugin"
],
"dependencies": {
"cerebro-tools": "^0.1.0",
"cerebro-ui": "^0.0.16",
"color": "^2.0.0",
"hex-rgb": "^1.0.0"
},
"devDependencies": {
"cerebro-scripts": "^0.0.19",
"rimraf": "^2.6.1"
}
}