-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.57 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
{
"name": "@tipofthehats/companion-caspar-configurator",
"version": "0.0.0-development",
"description": "A standalone program that automatically creates buttons in Bitfocus Companion to play videos present in a CasparCG setup, with support for complex dynamically-generated macros.",
"main": "src/index.ts",
"scripts": {
"start": "ts-node --files --project tsconfig.json src/index.ts",
"lint": "npm-run-all -s lint:*",
"lint:prettier": "prettier --list-different \"**/*.{ts,json,md,yml,html,js}\"",
"lint:eslint": "eslint \"**/*.{ts,html,js}\"",
"build": "tsc -p tsconfig.json",
"fix": "npm-run-all -s fix:*",
"fix:prettier": "prettier --write \"**/*.{ts,json,md,yml,html,js}\"",
"fix:eslint": "npm run lint:eslint -- --fix ",
"test": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TipoftheHats/companion-caspar-configurator.git"
},
"author": "Alex Van Camp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TipoftheHats/companion-caspar-configurator/issues"
},
"homepage": "https://github.com/TipoftheHats/companion-caspar-configurator#readme",
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@gamesdonequick/eslint-config": "^2.2.1",
"@gamesdonequick/prettier-config": "^2.2.1",
"eslint": "^6.3.0",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"semantic-release": "^15.13.24"
},
"dependencies": {
"@supportclass/tsconfig-base": "^1.0.4",
"@types/convict": "^4.2.1",
"@types/node": "^12.7.5",
"@types/shortid": "0.0.29",
"@types/socket.io-client": "^1.4.32",
"casparcg-connection": "^4.7.0",
"convict": "^5.1.0",
"fast-deep-equal": "^2.0.1",
"shortid": "^2.2.15",
"socket.io-client": "^2.2.0",
"strict-event-emitter-types": "^2.0.0",
"ts-node": "^8.3.0",
"tslib": "^1.10.0",
"type-fest": "^0.7.1",
"typescript": "^3.6.3",
"winston": "^3.2.1",
"winston-transport": "^4.3.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,json,md,yml,html,js}": [
"prettier --write",
"git add"
],
"*.{ts,html,js}": [
"eslint --fix",
"git add"
]
},
"publishConfig": {
"access": "public"
},
"files": [
"bin",
"src",
"tsconfig.json"
],
"bin": {
"companion-caspar-configurator": "./bin/index.js"
}
}