forked from transloadit/node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.16 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.16 KB
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
{
"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>",
"engines": {
"node": ">= 14.16"
},
"dependencies": {
"debug": "^4.3.1",
"execa": "5",
"form-data": "^3.0.0",
"got": "^11.8.1",
"into-stream": "^6.0.0",
"is-stream": "^2.0.0",
"lodash": "^4.17.20",
"p-map": "^4.0.0",
"tus-js-client": "^3.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.8",
"@babel/eslint-plugin": "^7.13.10",
"@types/jest": "^26.0.19",
"badge-maker": "^3.3.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-transloadit": "^2.0.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jest": "^24.3.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"fakefile": "^0.0.9",
"jest": "^26.6.3",
"nock": "^13.0.5",
"npm-run-all": "^4.1.5",
"p-retry": "^4.2.0",
"prettier": "^2.8.6",
"temp": "^0.9.1",
"tsd": "^0.25.0"
},
"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 lint:*",
"next:update": "next-update --keep true --tldr",
"test-unit": "jest --coverage ./test/unit",
"test-integration": "jest --runInBand ./test/integration",
"tsd": "tsd",
"test-all": "npm run tsd && jest --runInBand --coverage --coverageReporters json lcov text clover json-summary --forceExit",
"test": "npm run tsd && npm run test-unit",
"fix:formatting": "prettier --write .",
"lint:formatting": "prettier --check ."
},
"license": "MIT",
"main": "./index",
"types": "types/index.d.ts",
"files": [
"index.js",
"src",
"types/index.d.ts"
]
}