This repository has been archived by the owner on Dec 4, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.02 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
{
"name": "axis-configuration",
"version": "2.1.2",
"description": "A Node.js library written in TypeScript capable of configuring Axis Communication cameras.",
"keywords": [
"axis",
"communications",
"camera",
"device",
"configuration",
"vapix"
],
"homepage": "https://github.com/FantasticFiasco/axis-configuration-js",
"repository": {
"type": "git",
"url": "https://github.com/FantasticFiasco/axis-configuration-js.git"
},
"bugs": {
"url": "https://github.com/FantasticFiasco/axis-configuration-js/issues"
},
"author": "Mattias Kindborg <[email protected]> (https://twitter.com/FantasticFiasco)",
"license": "Apache-2.0",
"main": "./lib/index.js",
"types": "./lib/index",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"clean": "rimraf \"./+(src|test)/**/*.+(d.ts|js|js.map)\" ./lib ./coverage",
"prebuild": "yarn clean",
"build": "tsc -b",
"prestart": "yarn build",
"start": "node ./src/server.js",
"test": "jest",
"lint": "tslint \"./src/**/*.ts\" --exclude \"./**/*.d.ts\"",
"coverage": "jest --coverage && coveralls < coverage/lcov.info",
"prepack": "yarn build",
"preversion": "git add ./CHANGELOG.md",
"postversion": "git push --follow-tags"
},
"dependencies": {
"@fantasticfiasco/expect": "1.*",
"cheerio": "1.0.0-rc.3",
"lodash": ">4.17.5",
"request": ">2.68.0",
"request-promise-native": "1.*"
},
"devDependencies": {
"@types/cheerio": "0.22.22",
"@types/jest": "26.0.16",
"@types/lodash": "4.14.165",
"@types/nock": "10.0.3",
"@types/node": "14.14.10",
"@types/request-promise-native": "1.0.11",
"coveralls": "3.1.0",
"jest": "26.6.3",
"nock": "13.0.5",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"ts-jest": "26.4.4",
"tslint": "6.1.3",
"typescript": "4.1.2"
},
"resolutions": {
"diff": ">=3.5.0",
"handlebars": ">=4.3.0",
"js-yaml": ">=3.13.1",
"lodash": ">=4.17.19",
"minimist": ">=1.2.2",
"sshpk": ">=1.13.2"
}
}