-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.52 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.52 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
{
"name": "tus-node-server",
"description": "Node.js tus server",
"version": "0.3.3",
"repository": {
"type": "git",
"url": "git+https://bitbucket.usit.uio.no/scm/engagelab/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": ">=6.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.0.1",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"eslint": "^5.15.1",
"eslint-plugin-promise": "^4.0.1",
"istanbul": "^0.4.5",
"mocha": "^6.0.2",
"node-mocks-http": "^1.7.3",
"nyc": "^13.3.0",
"rimraf": "^2.6.3",
"should": "^13.2.3",
"supertest": "^4.0.0",
"tus-js-client": "^1.6.1"
},
"dependencies": {
"@google-cloud/storage": "^2.4.2",
"aws-sdk": "^2.418.0",
"configstore": "^4.0.0",
"debug": "^4.1.1"
}
}