forked from nrkno/sofie-emberplus-connection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·84 lines (84 loc) · 2.62 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
{
"name": "emberplus-connection",
"version": "0.2.2",
"description": "Javascript implementation of the Ember+ automation protocol",
"engines": {
"node": ">=14.18"
},
"files": [
"dist/**/*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "run husky install",
"build": "rimraf dist && run build:main",
"build:main": "tsc -p tsconfig.build.json",
"lint:raw": "run eslint --ext .ts --ext .js --ext .tsx --ext .jsx --ignore-pattern dist",
"lint": "run lint:raw .",
"lint-fix": "run lint --fix",
"unit": "jest --coverage",
"test": "run lint && jest test",
"test:coverage": "run test -- --coverage",
"cov": "jest --coverage; open-cli coverage/lcov-report/index.html",
"cov-open": "open-cli coverage/lcov-report/index.html",
"changelog": "sofie-version",
"release": "run reset && run test && sofie-version",
"reset": "git clean -dfx && git reset --hard && yarn",
"validate:dependencies": "yarn npm audit --environment production && run license-validate",
"validate:dev-dependencies": "yarn npm audit --environment development",
"license-validate": "sofie-licensecheck --allowPackages [email protected]",
"husky": "./node_modules/.bin/husky",
"eslint": "./node_modules/.bin/eslint",
"prettier": "./node_modules/.bin/prettier",
"lint-staged": "./node_modules/.bin/lint-staged"
},
"contributors": [
"Gilles Dufour <[email protected]> (www.gdnet.be)",
"Brian Mayton <[email protected]> (http://bdm.cc)",
"Ola Christian Gundelsby <[email protected]> (https://nrk.no)",
"Balte de Wit <[email protected]> (https://superfly.tv/)",
"Richard Cartwright (https://superfly.tv/)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nrkno/sofie-emberplus-connection"
},
"license": "MIT",
"dependencies": {
"asn1": "evs-broadcast/node-asn1",
"debug": "^4.3.4",
"eventemitter3": "^4.0.7",
"long": "^3.2.0",
"smart-buffer": "^3.0.3",
"tslib": "^2.6.2"
},
"devDependencies": {
"@sofie-automation/code-standard-preset": "~2.5.2",
"@types/debug": "^4.1.9",
"@types/jest": "^29.5.5",
"@types/long": "^4.0.1",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "~4.9"
},
"bugs": {
"url": "https://github.com/nrkno/sofie-emberplus-connection/issues"
},
"homepage": "https://github.com/nrkno/sofie-emberplus-connection#readme",
"keywords": [
"emberplus",
"lawo"
],
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"lint-staged": {
"*.{css,json,md,scss}": [
"yarn prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"yarn lint:raw --fix"
]
},
"packageManager": "[email protected]"
}