-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.06 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
{
"name": "tv-automation-quantel-gateway-client",
"version": "3.1.7",
"description": "Quantel gateway client library",
"engines": {
"node": "^14.18 || ^16.14 || >=18.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"/CHANGELOG.md",
"/README.md",
"/LICENSE"
],
"scripts": {
"prepare": "husky install",
"build": "rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.json",
"lint:raw": "eslint --ext .ts --ext .js --ext .tsx --ext .jsx --ignore-pattern dist --ignore-pattern docs",
"lint": "yarn lint:raw .",
"lint-fix": "yarn lint --fix",
"unit": "jest --passWithNoTests",
"test": "yarn lint && yarn unit",
"test:coverage": "yarn test -- --coverage",
"cov": "jest --coverage; open-cli coverage/lcov-report/index.html",
"cov-open": "open-cli coverage/lcov-report/index.html",
"reset": "git clean -dfx && git reset --hard && yarn",
"validate:dependencies": "yarn audit --groups dependencies",
"validate:dev-dependencies": "yarn audit --groups devDependencies",
"release": "sofie-version"
},
"author": "Johan Nyman <[email protected]>",
"contributors": [
"Richard Cartwright <[email protected]> (https://superfly.tv/)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nrkno/tv-automation-quantel-gateway-client"
},
"license": "MIT",
"dependencies": {
"got": "^11.8.6"
},
"devDependencies": {
"@sofie-automation/code-standard-preset": "~2.2",
"@types/jest": "^29.2.5",
"@types/node": "^14.18.36",
"jest": "^29.3.1",
"open-cli": "^7.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "~4.5"
},
"bugs": {
"url": "https://github.com/nrkno/tv-automation-quantel-gateway-client/issues"
},
"homepage": "https://github.com/nrkno/tv-automation-quantel-gateway-client#readme",
"directories": {},
"keywords": [
"quantel-gateway",
"quantel",
"sofie"
],
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"lint-staged": {
"*.{css,json,md,scss,yml}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"yarn lint:raw --fix"
]
}
}