-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.52 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
{
"name": "tv-automation-quantel-browser-plugin",
"version": "1.1.0",
"description": "MOS compatible Quantel video clip browser for use with Sofie TV Automation system",
"main": "server/index.mjs",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "node server/index.mjs",
"lint": "eslint . --ext .js",
"lint:fix": "yarn lint -- --fix",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "yarn test --watch",
"reset": "git clean -dfx && git reset --hard && yarn",
"release": "yarn reset && yarn test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:nrkno/tv-automation-quantel-browser-plugin.git"
},
"author": "[email protected]",
"license": "MIT",
"private": true,
"bugs": {
"url": "https://github.com/nrkno/tv-automation-quantel-browser-plugin/issues"
},
"homepage": "https://github.com/nrkno/tv-automation-quantel-browser-plugin#readme",
"dependencies": {
"cross-env": "^7.0.3",
"koa": "^2.11.0",
"koa-router": "^8.0.8",
"koa-static": "^5.0.0",
"node-fetch": "^3.3.2",
"xml2json": "^0.12.0"
},
"devDependencies": {
"@types/xml2json": "^0.11.4",
"babel-jest": "^29.6.2",
"eslint": "^8.47.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"esm": "^3.2.25",
"husky": "^4.2.2",
"jest": "^29.6.2",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write"
]
}
}