forked from agsh/onvif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.67 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
66
67
68
69
{
"name": "onvif",
"version": "0.6.5",
"author": "Andrew D.Laptev <a.d.laptev@gmail.com>",
"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",
"test-on-travis": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"mockserver": "node startServerMockup.js"
},
"contributors": [
{
"name": "Andrew D.Laptev",
"email": "a.d.laptev@gmail.com",
"url": "https://github.com/agsh/onvif"
},
{
"name": "Chris Wiggins",
"email": "chris@wiggins.nz",
"url": "https://github.com/chriswiggins"
},
{
"name": "Jeff Galbraith",
"email": "jgalbraith@intelliviewtech.com",
"url": "http://intelliviewtech.com"
},
{
"name": "Roger Hardiman",
"email": "opensource@rjh.org.uk",
"url": "http://www.rjh.org.uk"
}
],
"repository": {
"type": "git",
"url": "https://github.com/agsh/onvif.git"
},
"dependencies": {
"lodash.get": "^4.4.2",
"xml2js": "^0.4.23"
},
"keywords": [
"onvif",
"video",
"PTZ",
"camera",
"RTSP"
],
"license": "MIT",
"engines": {
"node": ">=6.0"
},
"devDependencies": {
"coveralls": "^3.1.1",
"dot": "^1.1.3",
"eslint": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"keypress": "^0.2.1",
"mocha": "^9.1.3",
"mocha-lcov-reporter": "^1.3.0",
"nimble": "^0.0.2",
"nyc": "^15.1.0",
"ip": "^1.1.5"
}
}