-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.78 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.78 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
77
78
79
80
{
"name": "image-augment",
"version": "0.0.1",
"description": "Image augmentation library for machine learning in javascript.",
"main": "index.js",
"scripts": {
"benchmark": "DEBUG_COLORS=0 DEBUG=image-augmenter:augmenters:sequential node test/benchmark/benchmark.js",
"lint": "xo",
"doc": "jsdoc lib/augmenters/*.js -d docs -c jsdoc.conf.json",
"test": "ava test/augmenters/* test/generators/* --serial",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/piercus/image-augment.git"
},
"keywords": [
"image",
"tensorflow",
"tensorflowjs",
"opencv4nodejs",
"augmentation",
"augment",
"imgaug",
"opencv",
"img",
"combinatoire",
"hasard",
"random",
"generation",
"ml",
"deep",
"learning",
"opencv",
"random",
"noise",
"translate",
"blur",
"affine",
"affine transformation",
"perspective",
"perspective transformation",
"crop",
"pad",
"border",
"resize",
"image workflow"
],
"author": "Pierre Colle <piercus@gmail.com>",
"license": "MIT",
"xo": {
"rules": {
"no-new": 1,
"ava/no-import-test-files": 1
},
"ignores": [
"docs"
]
},
"bugs": {
"url": "https://github.com/piercus/image-augment/issues"
},
"homepage": "https://github.com/piercus/image-augment#readme",
"devDependencies": {
"@tensorflow/tfjs-node": "^1.0.0",
"@tensorflow/tfjs-node-gpu": "^1.0.0",
"ava": "^1.2.1",
"bluebird": "^3.5.3",
"jsdoc": "^3.5.5",
"opencv4nodejs": "^4.14.1",
"pngjs": "^3.4.0",
"semantic-release": "^15.13.3",
"xo": "^0.24.0"
},
"dependencies": {
"debug": "^4.1.1",
"hasard": "^1.5.0",
"linear-solve": "^1.2.1"
}
}