-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
69 lines (69 loc) · 1.35 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
{
"name": "colr",
"version": "1.2.2",
"description": "Fast and simple color conversion",
"main": "index.js",
"scripts": {
"test": "mocha -R spec test",
"coverage": "mocha --require blanket -R html-cov > coverage.html",
"webpack": "webpack -p"
},
"repository": {
"type": "git",
"url": "https://github.com/stayradiated/colr"
},
"keywords": [
"color",
"convert",
"converstion",
"grayscale",
"hex",
"rgb",
"hsv",
"hsl",
"hsb",
"lighten",
"darken"
],
"author": "George Czabania",
"license": "MIT",
"bugs": {
"url": "https://github.com/stayradiated/colr/issues"
},
"homepage": "https://github.com/stayradiated/colr",
"dependencies": {
"colr-convert": "^1.0.5"
},
"devDependencies": {
"benchmark": "^1.0.0",
"blanket": "^1.1.7",
"chroma-js": "^1.1.1",
"color": "^0.10.1",
"tinycolor2": "^1.1.2",
"webpack": "^1.11.0"
},
"config": {
"blanket": {
"pattern": "//(colr/index.js|colr-convert/index.js)/"
}
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"mocha": true
},
"plugins": [
"react"
],
"ecmaFeatures": {
"jsx": true
},
"rules": {
"quotes": "single",
"comma-dangle": "always-multiline",
"no-multi-spaces": 0,
"key-spacing": 0
}
}
}