-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.18 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": "convert-to-oklch",
"version": "1.2.8",
"description": "CLI tool that converts rgb(), rgba(), hex, hsl() and hsla() colors to oklch() in specified CSS files.",
"main": "./src/index.js",
"bin": {
"convert-to-oklch": "./src/index.js"
},
"engines": {
"node": ">=16"
},
"type": "module",
"files": [
"src/**/*.js",
"!**/**/*.test.js"
],
"keywords": [
"oklch",
"convert",
"transform",
"rgb",
"rgba",
"hex",
"hsl",
"hsla"
],
"author": "Fedya Petrakov",
"repository": {
"type": "git",
"url": "https://github.com/fpetrakov/convert-to-oklch"
},
"bugs": {
"url": "https://github.com/fpetrakov/convert-to-oklch/issues"
},
"license": "MIT",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"format": "prettier --write .",
"lint": "eslint --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.js": "npm run lint",
".": "npm run format"
},
"dependencies": {
"colorjs.io": "0.4.0",
"commander": "^9.4.0",
"picocolors": "^1.0.0",
"postcss": "^8.4.16"
},
"devDependencies": {
"eslint": "^8.29.0",
"husky": "^8.0.3",
"jest": "^28.1.3",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3"
}
}