forked from image-js/image-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.95 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "image-js",
"version": "0.33.2",
"description": "Image processing and manipulation in JavaScript",
"keywords": [
"image",
"processing",
"manipulation",
"analysis",
"histogram",
"hsb",
"hsl",
"rgb",
"roi",
"rois",
"mask"
],
"author": "Michaël Zasso",
"contributors": [
"Luc Patiny"
],
"repository": "image-js/image-js",
"bugs": {
"url": "https://github.com/image-js/image-js/issues"
},
"homepage": "https://github.com/image-js/image-js",
"license": "MIT",
"main": "./lib/index.js",
"module": "./src/index.js",
"types": "./index.d.ts",
"browser": {
"./src/worker/worker.js": "./src/browser/worker/worker.js",
"./src/image/core/environment.js": "./src/browser/environment.js",
"fs": false
},
"files": [
"lib",
"src",
"index.d.ts"
],
"scripts": {
"build": "cheminfo-build --root IJS",
"clean-lib": "rimraf lib",
"compile": "npm run clean-lib && cross-env NODE_ENV=npm babel src --out-dir lib --ignore \"**/__tests__\" --quiet",
"eslint": "eslint src test/common.js test/nodeScripts --cache",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run compile",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"test": "npm run test-only && npm run eslint && npm run prettier",
"test-coverage": "jest --coverage --runInBand",
"test-only": "jest"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/lib/",
"<rootDir>/node_modules/"
]
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-transform-block-scoping": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@types/jest": "^27.0.2",
"benchmark": "^2.1.4",
"cheminfo-build": "^1.1.11",
"cross-env": "^7.0.3",
"eslint": "^8.1.0",
"eslint-config-cheminfo": "^7.1.2",
"esm": "^3.2.25",
"jest": "^27.3.1",
"jest-matcher-deep-close-to": "^3.0.2",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"sha.js": "^2.4.11"
},
"dependencies": {
"@swiftcarrot/color-fns": "^3.2.0",
"blob-util": "^2.0.2",
"canny-edge-detector": "^1.0.0",
"fast-bmp": "^1.0.0",
"fast-jpeg": "^1.0.1",
"fast-list": "^1.0.3",
"fast-png": "^6.1.0",
"has-own": "^1.0.1",
"image-type": "^4.1.0",
"is-array-type": "^1.0.0",
"is-integer": "^1.0.7",
"jpeg-js": "^0.4.3",
"js-priority-queue": "^0.1.5",
"js-quantities": "^1.7.6",
"median-quickselect": "^1.0.1",
"ml-convolution": "0.2.0",
"ml-disjoint-set": "^1.0.0",
"ml-matrix": "^6.8.0",
"ml-matrix-convolution": "0.4.3",
"ml-regression": "^5.0.0",
"monotone-chain-convex-hull": "^1.0.0",
"new-array": "^1.0.0",
"robust-point-in-polygon": "^1.0.3",
"tiff": "^5.0.2",
"web-worker-manager": "^0.2.0"
},
"engines": {
"node": ">= 12.0.0"
}
}