-
Notifications
You must be signed in to change notification settings - Fork 240
/
package.json
65 lines (65 loc) · 1.56 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "onvif",
"version": "0.8.0",
"author": "Andrew D.Laptev <[email protected]>",
"description": "Client to ONVIF NVT devices Profile S: cameras",
"main": "lib/onvif.js",
"scripts": {
"jsdoc": "jsdoc ./lib/*.js --readme ./README.md --destination ./docs",
"gh-pages": "jsdoc ./lib/*.js --readme ./README.md --destination ./",
"lint": "eslint lib/*.js",
"pretest": "npm run lint",
"test": "nyc mocha",
"mockserver": "node startServerMockup.js"
},
"contributors": [
{
"name": "Andrew D.Laptev",
"email": "[email protected]",
"url": "https://github.com/agsh"
},
{
"name": "Chris Wiggins",
"email": "[email protected]",
"url": "https://github.com/chriswiggins"
},
{
"name": "Jeff Galbraith",
"email": "[email protected]",
"url": "http://intelliviewtech.com"
},
{
"name": "Roger Hardiman",
"email": "[email protected]",
"url": "http://www.rjh.org.uk"
}
],
"repository": {
"type": "git",
"url": "https://github.com/agsh/onvif.git"
},
"dependencies": {
"xml2js": "^0.6.2"
},
"keywords": [
"onvif",
"video",
"PTZ",
"camera",
"RTSP"
],
"license": "MIT",
"engines": {
"node": ">=14.0"
},
"devDependencies": {
"dot": "^1.1.3",
"eslint": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"jsdoc": "^4.0.2",
"keypress": "^0.2.1",
"mocha": "^10.0.0",
"nimble": "^0.0.2",
"nyc": "^15.1.0"
}
}