forked from transloadit/node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.79 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
{
"name": "transloadit",
"version": "3.0.0",
"description": "Node.js SDK for Transloadit",
"keywords": [
"transloadit",
"encoding",
"transcoding",
"video",
"audio",
"mp3"
],
"author": "Tim Koschuetzki <tim@transloadit.com>",
"engines": {
"node": ">= 10.0.0"
},
"dependencies": {
"debug": "^4.3.1",
"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": "^2.2.0"
},
"devDependencies": {
"@babel/eslint-plugin": "^7.13.10",
"@types/jest": "^26.0.19",
"badge-maker": "^3.3.0",
"eslint": "^7.18.0",
"eslint-config-transloadit": "^1.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.2.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.22.0",
"fakefile": "^0.0.9",
"jest": "^26.6.3",
"localtunnel": "^2.0.0",
"nock": "^13.0.5",
"p-retry": "^4.2.0",
"request": "^2.88.2",
"temp": "^0.9.1",
"tsd": "^0.14.0",
"uuid": "^8.3.2"
},
"repository": {
"type": "git",
"url": "git://github.com/transloadit/node-sdk.git"
},
"directories": {
"src": "./src"
},
"scripts": {
"fix": "eslint . --fix",
"lint": "eslint .",
"next:update": "next-update --keep true --tldr",
"test-unit": "jest --coverage ./test/unit",
"test-integration": "jest ./test/integration",
"tsd": "tsd",
"test-all": "npm run tsd && jest --coverage --coverageReporters json lcov text clover json-summary --forceExit",
"test": "npm run tsd && npm run test-unit"
},
"license": "MIT",
"main": "./index",
"types": "types/index.d.ts",
"files": [
"index.js",
"src",
"types/index.d.ts"
]
}