-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 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
{
"name": "skeleton-tracing-wasm",
"version": "1.0.3",
"description": "A new algorithm for retrieving topological skeleton as a set of polylines from binary images: WASM version",
"main": "build/trace_skeleton_wasm.js",
"unpkg": "build/trace_skeleton_wasm.min.js",
"jsdelivr": "dist/trace_skeleton_wasm.js",
"module": "index.js",
"author": {
"name": "Lingdong Huang",
"email": "lingdong0618@hotmail.com"
},
"contributors": [
{
"name": "Radamés Ajna",
"email": "radamajna@gmail.com"
}
],
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"skeletonization",
"computer-vision",
"algorithm",
"computational-geometry",
"polylines"
],
"license": "MIT",
"devDependencies": {
"rollup": "^2.21.0",
"rollup-plugin-ascii": "^0.0.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^6.1.0",
"terser": "^4.8.0"
}
}