-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.68 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.68 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@huddly/device-api-ip",
"version": "0.2.1",
"description": "Huddly SDK device api which uses grpc as transport protocol for communicating with the huddly network/ip cameras",
"keywords": [
"API",
"SDK",
"Huddly",
"Transport",
"GRPC",
"Discovery",
"Protocol",
"Network",
"IP"
],
"author": "Huddly AS <npm@huddly.com>",
"homepage": "http://developer.huddly.com",
"license": "MIT",
"main": "./lib/src/index.js",
"types": "./lib/src/index.d.ts",
"directories": {
"lib": "lib",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Huddly/device-api-ip.git"
},
"scripts": {
"build": "npm run build-ts && npm run tslint",
"build-ts": "tsc --declaration",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"prepublish-package": "node scripts/rmLibDir",
"publish-package": "npm run build && npm publish",
"prettier": "npx prettier --config .prettierrc --write src/**/*.ts tests/**/*.spec.ts",
"prettier-check": "npx prettier --config .prettierrc --check src/**/*.ts tests/**/*.spec.ts",
"test": "nyc mocha -r ts-node/register --recursive \"tests/**/*.spec.ts\" --exit",
"test-js": "mocha -r ts-node/register --recursive \"lib/tests/**/*.spec.js\"",
"prepare": "npm run build",
"audit-check": "node ./scripts/checkVulnerabilities.js"
},
"files": [
"lib",
"README.md",
"bundle"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"pre-commit": [
"prettier-check",
"tslint",
"build",
"test"
],
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"bugs": {
"url": "https://github.com/Huddly/device-api-ip/issues"
},
"dependencies": {
"@huddly/sdk-interfaces": "^0.2.0",
"@types/node": "^13.1.2",
"chalk": "^4.1.2",
"dgram": "^1.0.1",
"elementtree": "^0.1.7",
"node-uuid": "^1.4.8"
},
"devDependencies": {
"@types/elementtree": "^0.1.0",
"@types/mocha": "^5.2.7",
"@types/node-uuid": "0.0.28",
"@types/sinon": "^10.0.2",
"await-sleep": "0.0.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-things": "^0.2.0",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0",
"ts-node": "^8.5.4",
"tslint": "^6.1.1",
"typescript": "^4.3.2"
}
}