This repository was archived by the owner on Jul 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.97 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
{
"name": "inference_engine_js",
"version": "0.0.1",
"description": "OpenVINO Inference Engine NodeJS API",
"repository": {
"type": "git",
"url": "git://github.com/artyomtugaryov/inference_engine_js.git"
},
"main": "./lib/inference_engine.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "node-gyp rebuild -j 12 --verbose",
"tsc": "tsc",
"dev:sample:hello-classification": "ts-node-dev --respawn --transpileOnly samples/hello_classification.ts",
"prod:sample:hello-classification": "tsc && node ./js-build/hello_classification.js",
"dev:sample:async-hello-classification": "ts-node-dev --respawn --transpileOnly samples/async_hello_classification.ts",
"prod:sample:async-hello-classification": "tsc && node ./js-build/async_hello_classification.js",
"dev:sample:hello-query-device": "ts-node-dev --respawn --transpileOnly samples/hello_query_device.ts",
"prod:sample:hello-query-device": "tsc && node ./js-build/hello_query_device.js",
"dev:sample:network-information": "ts-node-dev --respawn --transpileOnly samples/network_information.ts",
"prod:sample:network-information": "tsc && node ./js-build/network_information.js",
"dev:sample:object-detection-ssd": "ts-node-dev --respawn --transpileOnly samples/object_detection_ssd.ts",
"prod:sample:object-detection-ssd": "tsc && node ./js-build/object_detection_ssd.js"
},
"author": "Artyom Tugaryov, Yaroslav Tarkan",
"license": "ISC",
"dependencies": {
"bindings": "^1.5.0",
"lodash": "^4.17.19",
"node-addon-api": "^2.0.0",
"node-gyp": "^6.0.0",
"opencv4nodejs": "^5.5.0",
"v10": "^1.0.1"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-plugin-import": "^2.18.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.3"
}
}