-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.27 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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "ffmpeg-batch",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node dist/server.js",
"watch": "DEBUG=ffmpeg* nodemon dist/server.js",
"watch-ts": "tsc -w",
"build": "rm -rf ./dist && tsc",
"test": "TS_NODE_PROJECT=./tsconfig.test.json NODE_ENV=test && nyc mocha \"test/**/*.test.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlaflamm/ffmpeg-batch.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mlaflamm/ffmpeg-batch/issues"
},
"homepage": "https://github.com/mlaflamm/ffmpeg-batch#readme",
"dependencies": {
"@types/filesize": "^5.0.0",
"body-parser": "^1.19.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"filesize": "^6.1.0",
"http-errors": "^1.8.0",
"lodash": "^4.17.20",
"microframework-w3tec": "^0.6.3",
"morgan": "^1.10.0",
"ms": "^2.1.2",
"myzod": "^1.1.0",
"p-map": "^4.0.0",
"pretty-ms": "^7.0.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0-alpha.6",
"slice-file-ml": "^1.0.0",
"socket.io": "^2.3.0",
"touch": "^3.1.0",
"typedi": "^0.8.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.8",
"@types/http-errors": "^1.8.0",
"@types/lodash": "^4.14.161",
"@types/mocha": "^8.0.3",
"@types/morgan": "^1.9.1",
"@types/ms": "^0.7.31",
"@types/socket.io": "^2.1.11",
"@types/supertest": "^2.0.10",
"@types/touch": "^3.1.1",
"@types/uuid": "^8.3.0",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"supertest": "^4.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"mocha": {
"require": [
"ts-node/register"
],
"timeout": 5000,
"exit": true
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"html",
"text"
],
"sourceMap": true,
"instrument": true
}
}