-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
85 lines (85 loc) · 2.21 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
{
"name": "transloadit",
"version": "3.0.2",
"description": "Node.js SDK for Transloadit",
"keywords": [
"transloadit",
"encoding",
"transcoding",
"video",
"audio",
"mp3"
],
"author": "Tim Koschuetzki <tim@transloadit.com>",
"packageManager": "yarn@4.0.1",
"engines": {
"node": ">= 18"
},
"dependencies": {
"debug": "^4.3.7",
"form-data": "^4.0.1",
"got": "^11.8.6",
"into-stream": "^6.0.0",
"is-stream": "^2.0.1",
"p-map": "^4.0.0",
"tus-js-client": "^3.1.3"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/eslint-parser": "^7.25.8",
"@babel/eslint-plugin": "^7.25.7",
"@types/debug": "^4.1.12",
"@types/temp": "^0.9.4",
"@vitest/coverage-v8": "^2.1.3",
"badge-maker": "^4.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-transloadit": "^2.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"execa": "5.1.1",
"nock": "^13.5.5",
"npm-run-all": "^4.1.5",
"p-retry": "^4.6.2",
"prettier": "^3.3.3",
"temp": "^0.9.4",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"repository": {
"type": "git",
"url": "git://github.com/transloadit/node-sdk.git"
},
"directories": {
"src": "./src"
},
"scripts": {
"fix:js": "eslint . --fix",
"lint:js": "eslint .",
"lint": "npm-run-all --parallel 'lint:*'",
"fix": "npm-run-all --serial 'fix:*'",
"next:update": "next-update --keep true --tldr",
"prepack": "tsc --build",
"test-unit": "vitest run --coverage ./test/unit",
"test-integration": "vitest run ./test/integration",
"test-all": "npm run tsd && vitest run --coverage",
"test": "npm run tsd && npm run test-unit",
"fix:formatting": "prettier --write .",
"lint:formatting": "prettier --check ."
},
"license": "MIT",
"main": "./dist/Transloadit.js",
"exports": {
".": "./dist/Transloadit.js",
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
]
}