-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"main": "lib/index.js",
"engines": {
"node": "~10 >=10.20 || >=12.17"
},
"dependencies": {
"bindings": "~1.2.1",
"node-addon-api": "^3.0.0",
"prebuild": "^10.0.1",
"prebuild-install": "^6.0.0"
},
"scripts": {
"install": "prebuild-install -r napi || cmake-js compile",
"compile": "cmake-js compile",
"rebuild": "cmake-js rebuild",
"test": "node ./test/test_binding.js",
"build-prebuild": "prebuild -t 3 -r napi --include-regex \"\\.[nsd][oyl][dl]?[ie]?b?$\" --backend cmake-js"
},
"name": "@techainer1t/sort-node",
"description": "Node binding of SORT: Simple, online, and real-time tracking of multiple objects in a video sequence.",
"version": "1.1.1",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Techainer/sort-node.git"
},
"keywords": [
"sort",
"tracking"
],
"author": "lamhoangtung",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Techainer/sort-node/issues"
},
"homepage": "https://github.com/Techainer/sort-node#readme",
"devDependencies": {
"cmake-js": "^6.1.0"
},
"binary": {
"napi_versions": [
3
]
}
}