-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.39 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
{
"name": "chromaticity-color-utilities",
"version": "0.14.0-alpha",
"description": "Color utilities for Node.js",
"main": "dist/main.js",
"scripts": {
"test": "mocha",
"test-types": "tsc test-types/types.ts --esModuleInterop && tsc test-types/types-new.ts --esModuleInterop",
"servetest": "nodemon serverTest/app.js"
},
"engines": {
"node": ">= 10.0.0"
},
"author": {
"name": "Emma Litwa-Vulcu",
"email": "[email protected]"
},
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/reiniiriarios/chromaticity-color-utilities.git"
},
"bugs": {
"url": "https://github.com/reiniiriarios/chromaticity-color-utilities/issues"
},
"homepage": "https://reiniiriarios.github.io/chromaticity-color-utilities/",
"keywords": [
"color",
"chroma",
"color conversion",
"color utilities",
"color schemes",
"color spaces",
"standard illuminants",
"video color",
"luma",
"RGB",
"hue",
"saturation",
"cmyk",
"yiq",
"ciexyz",
"ciexyy",
"cielab",
"cieluv",
"ypbpr",
"ycbcr"
],
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/express": "^4.17.11",
"@types/mocha": "^9.1.0",
"@types/node": "^14.14.37",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1"
}
}