-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 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
{
"name": "deltaphistar",
"version": "0.0.1",
"type": "module",
"description": "Delta Phi Star is a general purpose method of determining perceptual lightness contrast developed by Andrew Somers (Myndex Research), and is a sibling of APCA and SACAM. It is a simplified method using easily invertible standardized maths, however it lacks some useful APCA properties such as polarity sensitivity.",
"main": "./src/deltaphistar.js",
"keywords": [
"CSS",
"HTML",
"PDF",
"RTF",
"sRGB",
"RGB",
"P3",
"displayP3",
"Adobe RGB",
"LCh",
"Lstar",
"color",
"colour",
"contrast",
"lightness",
"brightness",
"luminance",
"luminance contrast",
"lightness contrast",
"perceptual contrast",
"visual contrast",
"color contrast",
"colour contrast",
"text contrast",
"APCA contrast",
"A11y contrast",
"constant contrast",
"accessible contrast",
"readability contrast",
"readability",
"accessibility",
"contrast sensitivity",
"spatial frequency",
"spacial frequency",
"design tools",
"design systems",
"design guidelines",
"typography",
"a11y",
"W3C",
"WCAG",
"WCAG 2",
"WCAG 3",
"SACAM",
"SAPC",
"APCA"
],
"author": "Andrew Somers",
"license": "AGPL v3",
"bugs": {
"url": "https://github.com/Myndex/deltaphistar/issues"
},
"forum": {
"url": "https://github.com/Myndex/deltaphistar/discussion"
},
"repository": {
"type": "git",
"url": "https://github.com/Myndex/deltaphistar.git"
},
"homepage": "https://git.myndex.com",
"scripts": {
"test": "ava test/index.js"
},
"devDependencies": {
"ava": "^4.3.0"
},
"dependencies": {
"colorparsley": "^0.1.8",
"seestars": "^0.0.1"
}
}