-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.49 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.49 KB
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
{
"name": "color-name-api",
"version": "0.130.0",
"description": "Rest API that returns a bunch of color names for a given color-value",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "npm run test:local && npm run test:vptree && npm run test:exhausted && npm run test:compare-api && npm run test:well-known && npm run test:palette-name && npm run test:gzip-headers && npm run test:caching && npm run test:memory",
"test:local": "node test/test.js",
"test:vptree": "node test/vptree.test.js",
"test:palette-name": "node test/generatePaletteName.test.js",
"test:compare-api": "node test/compare-api.js",
"test:gzip-headers": "node test/gzip-headers.test.js",
"test:caching": "node test/caching.test.js",
"test:memory": "node --expose-gc test/memory.test.js",
"test:benchmark": "node test/benchmark.js",
"test:exhausted": "node test/test-exhausted-colors.js",
"test:well-known": "node test/test-well-known.js",
"start": "node src/server.js",
"apidocs": "openapi-generator-cli generate -i color-names-v1-OpenAPI.yml -g html2 -o ./docs/",
"openapitypes": "npx openapi-typescript color-names-v1-OpenAPI.yml -o generated/types.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/meodai/color-name-api.git"
},
"keywords": [
"color",
"palette",
"naming",
"colors",
"colour",
"colours",
"rest",
"api",
"node"
],
"author": "meodai@gmail.com",
"license": "MIT",
"engines": {
"node": ">=20.11.0",
"npm": ">=10.2.0"
},
"bugs": {
"url": "https://github.com/meodai/color-name-api/issues"
},
"homepage": "https://github.com/meodai/color-name-api#readme",
"dependencies": {
"@supabase/supabase-js": "^2.47.10",
"color-name-list": "^14.32.0",
"color-name-lists": "^3.33.2",
"culori": "^4.0.1",
"dotenv": "^16.4.7",
"fastest-levenshtein": "^1.0.16",
"ip-location-api": "^4.0.3",
"lru-cache": "^11.1.0",
"request-ip": "^3.3.0",
"seedrandom": "^3.0.5",
"socket.io": "^4.8.1",
"yaml": "^2.8.1"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@openapitools/openapi-generator-cli": "^2.18.4",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"openapi-typescript": "^7.6.1",
"prettier": "^3.6.2"
}
}