-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.29 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
{
"name": "audio-process-queue",
"version": "1.0.0",
"description": "Audio processing queue",
"main": "index.js",
"author": "Augustin Godiscal <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "babel src -d lib",
"dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 DEBUG=koa-mount babel-node -r ./node_modules/dotenv-safe/config ./src/index.js",
"start": "node -r ./node_modules/dotenv-safe/config ./lib/index.js run",
"run-all-tests": "npm-run-all test:*",
"test": "npm run test:lint src && npm run test:deps",
"test:lint": "standard src",
"test:deps": "dependency-check ./lib/*.js ./lib/**/*.js ./test/*.js --no-dev --i dotenv-safe"
},
"dependencies": {
"bullmq": "^1.86.4",
"dotenv-safe": "^8.2.0",
"fluent-ffmpeg": "^2.1.2",
"winston": "^3.2.1",
"yargs": "^17.3.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"babel-plugin-add-module-exports": "^1.0.2",
"dependency-check": "^4.1.0",
"npm-run-all": "^4.1.5",
"standard": "^16.0.4",
"supertest": "^6.0.1",
"tape": "^4.11.0"
},
"standard": {
"ignore": [
"**/lib/**"
]
}
}