forked from tus/tus-node-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.51 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
{
"name": "tus-node-server",
"description": "Node.js tus server",
"version": "0.2.3",
"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 <[email protected]>",
"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": "NODE_ENV=test mocha",
"coveralls": "NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"demo": "node demo/server.js",
"gcs_demo": "DATA_STORE=GCSDataStore node demo/server.js",
"lint": "eslint ."
},
"devDependencies": {
"@vimeo/eslint-config-player": "^4.0.1",
"babel-eslint": "^6.0.4",
"coveralls": "^2.11.4",
"eslint": "^2.9.0",
"eslint-plugin-promise": "^1.1.0",
"istanbul": "^0.4.0",
"mocha": "^2.3.3",
"mocha-lcov-reporter": "^1.0.0",
"should": "^8.0.1",
"supertest": "^1.1.0",
"tus-js-client": "^1.1.4"
},
"dependencies": {
"configstore": "^2.0.0",
"crypto-rand": "0.0.2",
"object-assign": "^4.1.0",
"request": "^2.72.0"
}
}