-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "adaptive-threshold",
"version": "1.2.0",
"description": "Adaptive Threshold of image",
"main": "lib/adaptive-threshold.js",
"browser": "shims/adaptive-threshold.js",
"directories": {
"example": "examples",
"test": "test"
},
"dependencies": {
"zeros": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"get-pixels": "^3.3.0",
"save-pixels": "^2.3.4",
"webpack": "^2.2.1"
},
"scripts": {
"test": "mocha",
"build:shim": "babel -d shims lib",
"build:demo": "webpack --config webpack.config.demo.js",
"build": "npm run build:shim && npm run build:demo"
},
"repository": "fujiharuka/node-adaptive-threshold",
"keywords": [
"threshold",
"ndarray",
"image"
],
"author": {
"name": "Fuji Haruka",
"email": "[email protected]",
"url": "https://github.com/FujiHaruka"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fujiharuka/node-adaptive-threshold/issues"
},
"homepage": "https://github.com/fujiharuka/node-adaptive-threshold#readme",
"engines": {
"node": ">=6",
"npm": ">=3"
}
}