forked from agsh/onvif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "onvif",
"version": "0.4.1",
"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 ./",
"jscs": "jscs lib/*.js",
"lint": "jshint lib/*.js",
"coffee-tests": "coffee -c test/*.coffee",
"pretest": "npm run lint && npm run jscs && npm run coffee-tests",
"test": "istanbul cover _mocha",
"test-on-travis": "npm run pretest && istanbul cover _mocha --report lcovonly",
"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"
},
"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": {
"coffee-script": "^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",
"mocha": ">=2.1.0",
"mocha-lcov-reporter": "0.0.1"
}
}