This repository has been archived by the owner on Aug 27, 2023. It is now read-only.
forked from CasparCG/media-scanner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.49 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
{
"name": "scanner",
"version": "1.6.1",
"description": "",
"license": "LGPL-3.0",
"main": "src/index.js",
"scripts": {
"dev": "nodemon ./src",
"lint": "standard",
"test": "jest",
"build-linux": "trash deploy && mkdir deploy && nexe src.index.js -o deploy/scanner -t linux-x64-12.16.2 && node copy-natives.js linux-x64",
"build-win32": "trash deploy && mkdir deploy && nexe src.index.js -o deploy/scanner.exe -t windows-x64-12.18.2 && node copy-natives.js win32-x64",
"validate:dependencies": "yarn audit && yarn license-validate",
"license-validate": "node-license-validator -p -d --allow-licenses LGPL-3.0 MIT BSD BSD-3-Clause ISC Apache Apache-2.0 \"Apache 2.0\" WTFPL Unlicense --allow-packages cycle base62"
},
"author": "",
"dependencies": {
"chokidar": "^3.4.2",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-pouchdb": "^4.1.0",
"lodash": "^4.17.11",
"mkdirp": "^1.0.4",
"moment": "^2.24.0",
"nconf": "^0.10.0",
"pino": "^5.11.1",
"pino-http": "^4.1.0",
"pino-pretty": "^2.5.0",
"pouchdb-node": "^7.0.0",
"recursive-readdir": "^2.2.2",
"xml2js": "^0.4.19"
},
"devDependencies": {
"find": "^0.3.0",
"fs-extra": "^8.1.0",
"jest": "^24.1.0",
"nexe": "^3.3.2",
"node-license-validator": "^1.3.0",
"nodemon": "^1.18.10",
"standard": "^12.0.1",
"trash-cli": "^3.0.0"
},
"resolutions": {
"node-license-validator/**/minimist": "^1.2.3",
"pouchdb-**/node-fetch": "^2.6.1"
}
}