-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.03 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
{
"name": "eloquent-ffmpeg",
"version": "0.14.0",
"description": "A high level API for FFmpeg",
"module": "lib/lib.js",
"main": "lib/lib.cjs",
"types": "lib/lib.d.ts",
"exports": {
"module": "./lib/lib.js",
"import": "./lib/lib.mjs",
"require": "./lib/lib.cjs"
},
"engines": {
"node": ">=10"
},
"scripts": {
"typedoc": "typedoc",
"dts": "tsc -p tsconfig.es6.json --emitDeclarationOnly --declaration --declarationDir ./temp && api-extractor run && npx rimraf ./temp",
"prepack": "npm run lint && npm run build && npm test",
"types": "ts-node -r dotenv/config scripts/ffmpeg_types.ts",
"build": "rollup -c && npm run dts",
"lint": "eslint {src,test}/**/*.ts",
"coverage": "codecov",
"test": "jest",
"test:modules": "npm test --prefix test/modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FedericoCarboni/eloquent-ffmpeg.git"
},
"keywords": [
"ffmpeg",
"video",
"audio",
"conversion"
],
"author": {
"name": "Federico Carboni",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/FedericoCarboni/eloquent-ffmpeg/issues"
},
"homepage": "https://github.com/FedericoCarboni/eloquent-ffmpeg#readme",
"files": [
"/lib"
],
"optionalDependencies": {
"ntsuspend": "^1.0.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.13.2",
"@rollup/plugin-inject": "^4.0.2",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-replace": "^2.4.1",
"@rollup/plugin-typescript": "^8.2.0",
"@types/jest": "^26.0.16",
"@types/node": "^14.14.35",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"codecov": "^3.8.1",
"dotenv": "^8.2.0",
"eslint": "^7.22.0",
"jest": "^26.6.3",
"rollup": "^2.34.1",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"typedoc": "^0.17.0-3",
"typescript": "^4.2.3",
"uuid": "^8.3.2"
}
}