forked from agsh/onvif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "onvif",
"version": "0.2.10",
"author": "Andrew D.Laptev <[email protected]>",
"description": "Client to ONVIF NVT devices, especially cameras",
"main": "lib/onvif.js",
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"test-on-travis": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly",
"test-coveralls": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage",
"upload-to-coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/agsh/onvif.git"
},
"dependencies": {
"xml2js": ">=0.4.4"
},
"keywords": [
"onvif",
"video",
"PTZ",
"camera",
"RTSP"
],
"license": "MIT",
"engines": {
"node": ">=0.6"
},
"devDependencies": {
"coveralls": ">=2.11.2",
"istanbul": ">=0.3.5",
"mocha": ">=2.1.0",
"mocha-lcov-reporter": "0.0.1"
}
}