-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
90 lines (90 loc) · 2 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
81
82
83
84
85
86
87
88
89
90
{
"name": "apca-w3",
"version": "0.1.9",
"type": "module",
"description": "APCA: the Accessible Perceptual Contrast Algorithm, a modern contrast method that improves readability contrast on self-illuminated displays. Developed for the W3C's WCAG 3 and other standards.",
"main": "./src/apca-w3.js",
"files": [
"./src/*.js","./src/*.md",
"./test/*.js","./test/*.html","./test/*.md",
"./man/apca*.*","./man/*.md",
"./images/README.md",
"./docs/*.md","./docs/*.txt",
"./dist/*.js",
"./data/*.js","./data/*.csv","./data/*.md"
],
"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": "Limited W3 License",
"bugs": {
"url": "https://github.com/Myndex/SAPC-APCA/issues"
},
"forum": {
"url": "https://github.com/Myndex/SAPC-APCA/discussion"
},
"repository": {
"type": "git",
"url": "https://github.com/Myndex/apca-w3.git"
},
"homepage": "https://git.myndex.com",
"scripts": {
"test": "ava test/index.js",
"genman": "marked-man man/README.md > man/apca-w3.1"
},
"man": "./man/apca-w3.1",
"devDependencies": {
"ava": "^4.3.0",
"marked": "<1",
"marked-man": "^0.7.0"
},
"dependencies": {
"colorparsley": "^0.1.8"
}
}