forked from tus/tus-node-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.5 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
{
"name": "tus-node-server",
"description": "Node.js tus server",
"version": "0.3.2",
"repository": {
"type": "git",
"url": "git+https://github.com/tus/tus-node-server.git"
},
"keywords": [
"tus",
"framework",
"resumable",
"upload",
"protocol",
"app",
"api",
"server"
],
"author": "Ben Stahl <bhstahl@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tus/tus-node-server/issues"
},
"homepage": "https://github.com/tus/tus-node-server#readme",
"engines": {
"node": ">=10.0"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"lib/"
],
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test mocha --timeout 5000",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"demo": "node demo/server.js",
"gcs_demo": "cross-env DATA_STORE=GCSDataStore node demo/server.js",
"lint": "eslint ."
},
"devDependencies": {
"@vimeo/eslint-config-player": "^5.0.1",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-plugin-promise": "^4.2.1",
"istanbul": "^0.4.5",
"mocha": "^8.1.3",
"node-mocks-http": "^1.9.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"should": "^13.2.3",
"supertest": "^5.0.0",
"tus-js-client": "^2.2.0"
},
"dependencies": {
"@google-cloud/storage": "^5.3.0",
"aws-sdk": "^2.761.0",
"configstore": "^5.0.1",
"debug": "^4.2.0"
}
}