-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 922 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
{
"name": "major-colors",
"version": "0.33.0",
"description": "color segmentation using kmeans+++ for clustering and CIEDE2000 algorithm for color distance",
"main": "dist/lib.js",
"module": "src/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack"
},
"author": "Sitian Liu <[email protected]> (https://www.sitianliu.com/)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"lodash": "^4.17.10",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"fast-memoize": "^2.5.1",
"k-means-plus": "^1.0.0"
},
"peerDependencies": {
"fast-memoize": "^2.5.1",
"k-means-plus": "^1.0.0"
}
}