-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "string-similarity-coloring",
"version": "1.0.12",
"description": "Color a given set of N strings into a set of M<N color classes",
"main": "dist/index.js",
"module": "mdist/index.js",
"files": [
"README.md",
"dist",
"mdist"
],
"scripts": {
"watch": "tsc --build tsconfig.json --watch",
"compile": "tsc --build tsconfig.json && tsc --build tsconfig-es6.json",
"prepare": "npm run compile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["string", "coloring", "colors", "similarity", "clustering"],
"author": "@starpit",
"license": "Apache-2.0",
"homepage": "https://github.com/kui-shell/string-similarity-coloring",
"bugs": {
"url": "https://github.com/kui-shell/string-similarity-coloring/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kui-shell/string-similarity-coloring"
},
"dependencies": {
"color-convert": "^2.0.1",
"string-similarity": "^4.0.4"
},
"devDependencies": {
"@types/color-convert": "^2.0.0",
"@types/debug": "^4.1.5",
"@types/string-similarity": "^4.0.0",
"debug": "^4.3.1",
"typescript": "^4.2.3"
}
}