-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
45 lines (45 loc) · 839 Bytes
/
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
{
"name": "color-string",
"description": "Parser and generator for CSS color strings",
"version": "2.0.0",
"author": "Heather Arthur <[email protected]>",
"contributors": [
"Maxime Thirouin",
"Dyma Ywanov <[email protected]>",
"Josh Junon"
],
"repository": "Qix-/color-string",
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "xo && tsd && node test.js"
},
"license": "MIT",
"files": [
"index.js",
"index.d.ts"
],
"xo": {
"rules": {
"no-cond-assign": 0,
"operator-linebreak": 0
}
},
"dependencies": {
"color-name": "^2.0.0"
},
"devDependencies": {
"tsd": "^0.31.2",
"xo": "^0.60.0"
},
"keywords": [
"color",
"colour",
"rgb",
"css"
]
}