-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
89 lines (89 loc) · 2.11 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
{
"name": "culori",
"version": "4.0.1",
"type": "module",
"main": "./bundled/culori.cjs",
"module": "./bundled/culori.min.mjs",
"browser": "./bundled/culori.min.js",
"jsdelivr": "./bundled/culori.umd.js",
"exports": {
".": {
"require": "./bundled/culori.cjs",
"import": "./src/index.js"
},
"./require": "./bundled/culori.cjs",
"./css": "./src/bootstrap/css.js",
"./all": "./src/bootstrap/all.js",
"./fn": "./src/index-fn.js",
"./package.json": "./package.json"
},
"repository": "[email protected]:Evercoder/culori.git",
"author": "Dan Burzo <[email protected]>",
"description": "A general-purpose color library for JavaScript",
"keywords": [
"blend",
"ciede2000",
"cielab",
"color",
"color-difference",
"cubehelix",
"din99",
"gradients",
"hsi",
"hsl",
"hsv",
"hwb",
"interpolation",
"lab",
"lch",
"lrgb",
"mix",
"rgb",
"yiq"
],
"license": "MIT",
"files": [
"bundled",
"src"
],
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"esbuild": "^0.19.11",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"gh-pages": "^6.1.1",
"prettier": "^3.2.4",
"pretty-quick": "^4.0.0"
},
"scripts": {
"prepare": "git config core.hooksPath .git-hooks",
"test": "node --test 'test/**/*.test.js'",
"start": "npx esbuild --servedir=.",
"build": "node build.js",
"benchmark": "node benchmark/index.js",
"prepublishOnly": "npm run lint && npm run build && npm run test",
"docs:start": "eleventy --config=eleventy.config.cjs --serve",
"docs:build": "npm run build && rm -rf www && eleventy --config=eleventy.config.cjs && cp bundled/culori.min.mjs www/",
"docs:deploy": "npm run docs:build && gh-pages -d www --dotfiles",
"lint": "eslint '{src,test}/**/*.js'"
},
"prettier": {
"bracketSpacing": true,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"useTabs": true,
"tabWidth": 4,
"arrowParens": "avoid",
"printWidth": 80
},
"sideEffects": [
"src/index.js",
"src/bootstrap/all.js",
"src/bootstrap/css.js"
],
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}