-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
86 lines (86 loc) · 2.21 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "onvif-nvt",
"version": "0.3.3",
"description": "Wrapper for ONVIF spec to control NVT (Network Video Transitter) devices.",
"main": "./dist/onvif-nvt.js",
"scripts": {
"build": "babel lib -d dist",
"jsdoc": "jsdoc ./lib/*.js ./lib/modules/*.js ./lib/utils/*.js --readme ./README.md --destination ./docs",
"lint": "eslint --ext .js lib test run",
"lint-fix": "eslint --ext .js lib test run --fix",
"test": "jest",
"test-ci": "yarn lint && jest && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"node",
"nodejs",
"onvif",
"nvt",
"ipcamera",
"camera",
"ptz",
"snapshot"
],
"homepage": "https://github.com/hawkeye64/onvif-nvt#readme",
"documentation": "https://hawkeye64.github.io/onvif-nvt",
"repository": {
"type": "git",
"url": "git+https://github.com/hawkeye64/onvif-nvt.git"
},
"author": "Jeff Galbraith <[email protected]>",
"license": "MIT",
"engines": {
"node": ">= 10.18.1",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
},
"dependencies": {
"pretty-data": "^0.40.0",
"request": "^2.88.2",
"url-parse": "^1.5.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.0.2",
"coveralls": "^3.1.0",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsdoc": "^35.1.3",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"fs": "0.0.2",
"jest": "^27.0.4",
"jsdoc": "^3.6.7",
"path": "^0.12.7"
},
"jest": {
"testEnvironment": "node"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": false,
"targets": {
"node": "current"
},
"debug": false
}
]
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
],
"comments": false
},
"false": {}
}