This repository has been archived by the owner on Aug 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.79 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
{
"name": "lumino",
"version": "2.6.0",
"description": "A simple library for handling conversion of color models (such as rgb, rgba, hex, hsl, etc) and generating different color harmonies (such as complementary, monochromatic, etc).",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"report": "jest --coverageReporters 'clover' --coverageDirectory '<rootDir>/__coverage__' --collectCoverage true",
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix",
"prepublishOnly": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm run test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndreasJJ/Lumino.git"
},
"keywords": [
"color",
"colors",
"colours",
"colour",
"rgb",
"rgba",
"hex",
"hsl",
"hwb",
"cmyk",
"ncol",
"rgba to rgb",
"hex to rgb",
"hex to rgba",
"hsl to rgb",
"rgb to hsl",
"complementary",
"monochromatic",
"analogous",
"split complementary",
"triadic",
"tetradic",
"javascript",
"typescript"
],
"author": "Andreasjj",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndreasJJ/Lumino/issues"
},
"homepage": "https://github.com/AndreasJJ/Lumino#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.5.3",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1"
}
}