-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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
{
"name": "pick-distinct-colors",
"version": "0.1.1",
"description": "A collection of algorithms and utilities for analyzing and selecting maximally distinct colors",
"main": "dist/index.js",
"module": "dist/index.mjs",
"type": "module",
"scripts": {
"build": "npx rollup -c",
"dev": "npx rollup -c -w",
"test": "npx jest --passWithNoTests",
"lint": "npx eslint src/**/*.js",
"format": "npx prettier --write \"src/**/*.js\"",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"color",
"distance",
"lab",
"deltaE",
"color-analysis",
"color-selection",
"color-palette",
"distinct-colors",
"color-picker"
],
"author": "Bence Damokos",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bdamokos/pick-distinct-colors.git"
},
"bugs": {
"url": "https://github.com/bdamokos/pick-distinct-colors/issues"
},
"homepage": "https://github.com/bdamokos/pick-distinct-colors#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"rollup": "^4.9.1"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14.0.0"
}
}