-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 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
{
"name": "camera-connection",
"version": "1.0.0",
"description": "Package for connecting with Pi-Eye camera",
"main": "./lib/src/index.js",
"types": "./lib/src/index.d.ts",
"scripts": {
"lint": "eslint ./**/*.ts",
"build": "tsc -b",
"pretest": "npm run build",
"test": "mocha ./lib/**/*.test.js",
"coverage": "nyc npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pi-Eye/camera-connection.git"
},
"author": "Bwu1324",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Pi-Eye/camera-connection/issues"
},
"homepage": "https://github.com/Pi-Eye/camera-connection#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"chai": "^4.3.6",
"cmake-js": "^7.0.0",
"eslint": "^8.27.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"typed-emitter": "^2.1.0",
"typescript": "^4.8.4"
},
"dependencies": {
"argon2": "^0.30.2",
"camera-interface": "github:Pi-Eye/camera-interface",
"events": "^3.3.0",
"node-stream-processor-types": "github:Pi-Eye/node-stream-processor-types",
"ws": "^8.11.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.7",
"utf-8-validate": "^5.0.10"
}
}