-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "dropbox-streaming-upload",
"version": "1.0.4",
"description": "Streaming uploads to dropbox v2 api",
"main": "build/index",
"types": "build/index",
"engines": {
"node": ">=4"
},
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "mocha -r ts-node/register src/**/*.spec.ts --timeout 300000",
"testwatch": "mocha -r ts-node/register -w --watch-extensions ts src/**/*.spec.ts",
"lint": "tslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kksharma1618/dropbox-streaming-upload.git"
},
"keywords": [
"dropbox",
"v2",
"stream",
"uploads"
],
"author": "Krishna Kant Sharma <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kksharma1618/dropbox-streaming-upload/issues"
},
"homepage": "https://github.com/kksharma1618/dropbox-streaming-upload#readme",
"devDependencies": {
"@types/assert-plus": "^1.0.3",
"@types/chai": "^3.5.2",
"@types/is-stream": "^1.1.0",
"@types/mocha": "^2.2.41",
"@types/request": "^2.0.3",
"@types/uuid": "^3.4.1",
"chai": "^3.5.0",
"chai-shallow-deep-equal": "^1.4.6",
"dropbox": "^2.5.7",
"mocha": "^3.3.0",
"ts-node": "^3.0.4",
"typescript": "^2.3.2",
"uuid": "^3.1.0"
},
"dependencies": {
"assert-plus": "^1.0.0",
"is-stream": "^1.1.0",
"request": "^2.81.0"
}
}