-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.02 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
{
"name": "media-helper",
"version": "3.0.0",
"description": "A small module to help detecting and converting files through URL/file sytem",
"main": "media-helper.js",
"repository": {
"type": "git",
"url": "git+https://github.com/soixantecircuits/media-helper.git"
},
"scripts": {
"test": "ava",
"test:watch": "ava --watch"
},
"files": [
"media-helper.js"
],
"dependencies": {
"axios": "^0.26.1",
"file-type": "12.3.0",
"mime-types": "2.1.35",
"mmmagic": "0.5.3"
},
"keywords": [
"file",
"type",
"convert",
"image",
"video",
"media",
"base64"
],
"engines": {
"node": ">=16.13.1"
},
"author": "Soixante circuits",
"license": "MIT",
"bugs": {
"url": "https://github.com/soixantecircuits/media-helper/issues"
},
"homepage": "https://github.com/soixantecircuits/media-helper#readme",
"devDependencies": {
"ava": "^4.1.0"
},
"ava": {
"files": [
"tests/*.mjs"
],
"source": [
"media-helper.js"
]
}
}