-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes to PTZ + others (credit @hawkeye64)
Remove old node versions from TravisCI testing Add gotoHomePosition and setHomePosition methods (with appropriate test suites) Fixes some camera’s fault parsing Bumps NPM package version, adds @hawekeye64 as contributor, fixes some npm deps Updates readme Updates test suite XML files to better naming convention
- Loading branch information
1 parent
a21199c
commit 88a4575
Showing
18 changed files
with
333 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
language: node_js | ||
node_js: | ||
- "0.12" | ||
- "4" | ||
- "5" | ||
- "6" | ||
before_install: | ||
- "npm config set spin false" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "onvif", | ||
"version": "0.5.4", | ||
"version": "0.5.5", | ||
"author": "Andrew D.Laptev <[email protected]>", | ||
"description": "Client to ONVIF NVT devices Profile S: cameras", | ||
"main": "lib/onvif.js", | ||
|
@@ -16,12 +16,24 @@ | |
"test-coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage", | ||
"upload-to-coveralls": "cat ./coverage/lcov.info | coveralls" | ||
}, | ||
"contributors": [ | ||
{ | ||
"name": "Andrew D.Laptev", | ||
"email": "[email protected]", | ||
"url": "https://github.com/agsh/onvif" | ||
}, | ||
{ | ||
"name": "Jeff Galbraith", | ||
"email": "[email protected]", | ||
"url": "http://intelliviewtech.com" | ||
} | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/agsh/onvif.git" | ||
}, | ||
"dependencies": { | ||
"xml2js": "^0.4" | ||
"xml2js": "^0.4.19" | ||
}, | ||
"keywords": [ | ||
"onvif", | ||
|
@@ -32,19 +44,19 @@ | |
], | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=0.12" | ||
"node": ">=6.0" | ||
}, | ||
"devDependencies": { | ||
"coffee-script": "^1.9.3", | ||
"coffeescript": "^1.9.3", | ||
"coveralls": ">=2.11.2", | ||
"dot": "^1.0.3", | ||
"istanbul": ">=0.3.5", | ||
"jscs": "^1.13.1", | ||
"jsdoc": "^3.3.0", | ||
"jshint": "^2.7.0", | ||
"keypress": "^0.2.1", | ||
"mocha": ">=2.1.0", | ||
"mocha-lcov-reporter": "0.0.1", | ||
"nimble": "^0.0.2", | ||
"keypress": "^0.2.1" | ||
"nimble": "^0.0.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.