forked from edgeimpulse/edge-impulse-linux-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2 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
{
"name": "edge-impulse-linux",
"version": "1.4.3",
"description": "Node.js SDK and tools for Edge Impulse for Linux",
"directories": {
"example": "examples"
},
"scripts": {
"build": "./node_modules/.bin/tsc -p .",
"lint": "./node_modules/tslint/bin/tslint -p tsconfig.json",
"test": "tsc -b . && TS_NODE_PROJECT=./tsconfig.json mocha --config ./test/.mocharc.js"
},
"bin": {
"edge-impulse-linux": "build/cli/linux/linux.js",
"edge-impulse-linux-runner": "build/cli/linux/runner.js",
"edge-impulse-camera-debug": "build/cli/linux/camera-debug.js"
},
"main": "build/library/index.js",
"types": "build/library/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/edgeimpulse/linux-sdk-node.git"
},
"author": "Jan Jongboom <hello@edgeimpulse.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/edgeimpulse/linux-sdk-node/issues"
},
"homepage": "https://github.com/edgeimpulse/linux-sdk-node#readme",
"dependencies": {
"@types/sharp": "0.29.1",
"async-mutex": "0.2.6",
"borc": "2.1.2",
"cbor": "5.0.1",
"commander": "4.1.1",
"express": "4.17.1",
"form-data": "4.0.0",
"inquirer": "7.0.0",
"jpeg-js": "0.4.2",
"node-fetch": "2.6.7",
"npm-registry-fetch": "5.0.0",
"request": "2.88.0",
"request-promise": "4.2.4",
"sharp": "0.29.1",
"socket.io": "2.4.1",
"tiny-async-pool": "1.1.0",
"tsee": "1.3.0",
"typed-emitter": "1.3.1",
"wavefile": "11.0.0",
"ws": "7.2.0"
},
"devDependencies": {
"@types/cbor": "2.0.0",
"@types/commander": "2.12.2",
"@types/express": "4.17.1",
"@types/inquirer": "6.5.0",
"@types/mocha": "9.0.0",
"@types/npm-registry-fetch": "4.0.1",
"@types/request": "2.48.3",
"@types/request-promise": "4.1.44",
"@types/socket.io": "2.1.4",
"@types/tiny-async-pool": "1.0.0",
"@types/ws": "6.0.3",
"mocha": "9.1.3",
"tslint": "6.1.2",
"ts-node": "10.4.0",
"typescript": "3.9.3"
}
}