-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
80 lines (80 loc) · 1.77 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
72
73
74
75
76
77
78
79
80
{
"name": "@csstools/convert-colors",
"version": "2.0.0",
"description": "Convert colors between RGB, HEX, HSL, HWB, LAB, LCH, and more",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",
"repository": "jonathantneal/convert-colors",
"homepage": "https://github.com/jonathantneal/convert-colors#readme",
"bugs": "https://github.com/jonathantneal/convert-colors/issues",
"main": "index.js",
"module": "index.mjs",
"files": [
"index.js",
"index.js.map",
"index.mjs",
"index.mjs.map"
],
"scripts": {
"build": "rollup -c .rollup.js --silent",
"docs": "jsdoc -c .jsdocrc -d .gh-pages",
"prepublishOnly": "npm test",
"pretest": "npm run build",
"test": "npm run test:ec && npm run test:js && npm run test:tape",
"test:ec": "echint test",
"test:js": "eslint src/*.js --cache --ignore-path .gitignore --quiet",
"test:tape": "node .tape"
},
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"docdash": "^1.0.2",
"echint": "^4.0.1",
"eslint": "^5.12.1",
"eslint-config-dev": "^2.0.0",
"jsdoc": "^3.5.5",
"pre-commit": "^1.2.2",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-terser": "^4.0.3"
},
"eslintConfig": {
"extends": "dev",
"rules": {
"max-params": [
2,
4
]
}
},
"keywords": [
"colors",
"contrast",
"conversions",
"converting",
"converts",
"hex",
"hsl",
"hsv",
"hwb",
"lab",
"lch",
"rgb",
"xyz",
"blue",
"green",
"red",
"blackness",
"hue",
"lightness",
"saturation",
"whiteness",
"cie",
"ciede2000",
"contrast",
"wcag"
]
}