This repository has been archived by the owner on Dec 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
115 lines (115 loc) · 4.3 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "sony-visca-connection",
"version": "0.0.0",
"description": "Typescript Node.js library for connecting with a Sony VISCA PTZ camera",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/module/index.js",
"browser": "dist/browser/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nrkno/sofie-sony-visca-connection.git"
},
"bugs": {
"url": "https://github.com/nrkno/sofie-sony-visca-connection/issues"
},
"homepage": "https://github.com/nrkno/sofie-sony-visca-connection#readme",
"contributors": [
{
"name": "Balte de Wit",
"email": "[email protected]",
"url": "https://superfly.tv"
}
],
"scripts": {
"info": "npm-scripts-info",
"build": "trash dist && yarn build:main",
"build:main": "tsc -p tsconfig.json",
"lint": "tslint --project tsconfig.jest.json --config tslint.json",
"unit": "jest",
"test": "yarn lint && yarn unit",
"test:integration": "yarn lint && jest --config=jest-integration.config.js",
"watch": "jest --watch",
"cov": "jest --coverage && opn coverage/lcov-report/index.html",
"cov-open": "opn coverage/lcov-report/index.html",
"send-coverage": "jest && codecov",
"docs": "yarn docs:html && opn docs/index.html",
"docs:test": "yarn docs:html",
"docs:html": "typedoc src/index.ts --excludePrivate --mode file --theme minimal --out docs",
"docs:json": "typedoc --mode file --json docs/typedoc.json src/index.ts",
"docs:publish": "yarn docs:html && gh-pages -d docs",
"changelog": "standard-version",
"release": "yarn reset && yarn test && yarn docs:publish && yarn changelog",
"reset": "git clean -dfx && git reset --hard && yarn",
"ci": "yarn test && yarn docs:test",
"validate:dependencies": "yarn audit && yarn license-validate",
"license-validate": "node-license-validator -p -d --allow-licenses MIT BSD BSD-3-Clause ISC Apache Unlicense --allow-packages cycle"
},
"scripts-info": {
"info": "Display information about the scripts",
"build": "(Trash and re)build the library",
"build:main": "Builds main build command without trash.",
"lint": "Lint all typescript source files",
"unit": "Build the library and run unit tests",
"test": "Lint, build, and test the library",
"test:integration": "Integration tests. Work in progress",
"watch": "Watch source files, rebuild library on changes, rerun relevant tests",
"cov": "Run tests, generate the HTML coverage report, and open it in a browser",
"cov-open": "Open current test coverage",
"send-coverage": "send coverage to codecov",
"docs": "Generate HTML API documentation and open it in a browser",
"docs:test": "Running the docs generation for testing.",
"docs:html": "Generate HTML documentation",
"docs:json": "Generate API documentation in typedoc JSON format",
"docs:publish": "Generate HTML API documentation and push it to GitHub Pages",
"changelog": "Bump package.json version, update CHANGELOG.md, tag a release",
"release": "Clean, build, test, publish docs, and prepare release (a one-step publish process). Updates versions and creates git commits.",
"reset": "Delete all untracked files and reset the repo to the last commit",
"ci": "Test script for running by the CI (CircleCI)",
"validate:dependencies": "Scan dependencies for vulnerabilities and check licenses",
"license-validate": "Validate licenses for dependencies."
},
"engines": {
"node": ">=4.5"
},
"devDependencies": {
"@types/jest": "^23.1.0",
"@types/node": "^8.0.4",
"codecov": "3.1.0",
"gh-pages": "^1.2.0",
"jest": "^24.1.0",
"mkdirp": "^0.5.1",
"node-license-validator": "^1.3.0",
"npm-scripts-info": "^0.3.7",
"opn-cli": "^3.1.0",
"sleep-ms": "^2.0.1",
"standard-version": "^4.0.0",
"trash-cli": "^1.4.0",
"ts-jest": "^23.10.4",
"tslint": "^5.10.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.13.0",
"typescript": "^3.3.3333"
},
"resolutions": {
"typedoc/marked": "^0.6.2"
},
"keywords": [
"sony",
"visca",
"ptz",
"ip",
"video",
"typescript",
"javascript",
"open",
"source"
],
"dependencies": {
},
"standard-version": {
"message": "chore(release): %s [skip ci]",
"tagPrefix": ""
}
}