-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 860 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
31
32
33
{
"name": "otsu",
"version": "0.0.5",
"description": "✂️ Otsu's Method for automated thresholding in JavaScript.",
"main": "dist",
"keywords": [
"image",
"processing",
"segmentation",
"threshold"
],
"scripts": {
"build": "babel src --out-dir dist && uglifyjs dist/*.js -o dist/*.js",
"prettify": "yarn prettier --write \"**/*.js\"",
"test": "jest"
},
"repository": "https://github.com/cawfree/otsu",
"author": "Alex Thomas (@cawfree) <hello@cawfree.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"husky": "^4.2.1",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"uglify-js": "^3.7.7"
},
"dependencies": {}
}